diff options
author | maxim <maxim@FreeBSD.org> | 2005-11-14 16:04:01 +0000 |
---|---|---|
committer | maxim <maxim@FreeBSD.org> | 2005-11-14 16:04:01 +0000 |
commit | 3e818c9936c54d23613e0b218f5e436df29318ee (patch) | |
tree | 11fb9474eb642af93b52546e4713da79668719f5 /sbin/mount_msdosfs | |
parent | fe3737065cbed4baf192008de7d0006847d5e889 (diff) | |
download | FreeBSD-src-3e818c9936c54d23613e0b218f5e436df29318ee.zip FreeBSD-src-3e818c9936c54d23613e0b218f5e436df29318ee.tar.gz |
o Style: restore tab indentation mangled in the previous delta.
Diffstat (limited to 'sbin/mount_msdosfs')
-rw-r--r-- | sbin/mount_msdosfs/mount_msdosfs.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sbin/mount_msdosfs/mount_msdosfs.c b/sbin/mount_msdosfs/mount_msdosfs.c index 88f2df9..351dfac 100644 --- a/sbin/mount_msdosfs/mount_msdosfs.c +++ b/sbin/mount_msdosfs/mount_msdosfs.c @@ -74,8 +74,8 @@ static int set_charset(struct iovec *iov, int *iovlen, const char *, const char int main(int argc, char **argv) { - struct iovec *iov = NULL; - int iovlen = 0; + struct iovec *iov = NULL; + int iovlen = 0; struct stat sb; int c, mntflags, set_gid, set_uid, set_mask, set_dirmask; int optflags = 0; @@ -136,8 +136,8 @@ main(int argc, char **argv) char *p = NULL; char *val = strdup(""); getmntopts(optarg, mopts, &mntflags, &optflags); - p = strchr(optarg, '='); - if (p != NULL) { + p = strchr(optarg, '='); + if (p != NULL) { free(val); *p = '\0'; val = p + 1; @@ -310,7 +310,7 @@ set_charset(struct iovec *iov, int *iovlen, const char *cs_local, const char *cs return (-1); } - build_iovec_argf(&iov, iovlen, "cs_win", ENCODING_UNICODE); + build_iovec_argf(&iov, iovlen, "cs_win", ENCODING_UNICODE); error = kiconv_add_xlat16_cspairs(ENCODING_UNICODE, cs_local); if (error) return (-1); |