aboutsummaryrefslogtreecommitdiff
path: root/sbin/mount_msdosfs/mount_msdosfs.c
diff options
context:
space:
mode:
authorMaxim Konovalov <maxim@FreeBSD.org>2005-11-14 16:04:01 +0000
committerMaxim Konovalov <maxim@FreeBSD.org>2005-11-14 16:04:01 +0000
commitc22d354139b81b7ee77d75b93a31fdfa20c27c49 (patch)
tree11fb9474eb642af93b52546e4713da79668719f5 /sbin/mount_msdosfs/mount_msdosfs.c
parent8cb6926e1668de71706d2e3d7839a3036179f387 (diff)
downloadsrc-c22d354139b81b7ee77d75b93a31fdfa20c27c49.tar.gz
src-c22d354139b81b7ee77d75b93a31fdfa20c27c49.zip
o Style: restore tab indentation mangled in the previous delta.
Notes
Notes: svn path=/head/; revision=152416
Diffstat (limited to 'sbin/mount_msdosfs/mount_msdosfs.c')
-rw-r--r--sbin/mount_msdosfs/mount_msdosfs.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sbin/mount_msdosfs/mount_msdosfs.c b/sbin/mount_msdosfs/mount_msdosfs.c
index 88f2df9ab3af..351dfacd300a 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);