diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2012-04-20 15:07:22 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2012-04-20 15:07:22 +0200 |
commit | 56443cdbdd23f7691df833d45f8c3468e07115bb (patch) | |
tree | b384353bf33031278b5d2a53fbe16c6feb9a245a /util-linux | |
parent | 8cab66730aa59c121eb98b20f4ae7ddda1c3ecf6 (diff) |
whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/mount.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 807e89747..f1da30fac 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -1337,7 +1337,7 @@ static NOINLINE int nfsmount(struct mntent *mp, long vfsflags, char *filteropts) "udp\0" "lock\0" "rdirplus\0" - "acl\0"; + "acl\0"; int val = 1; if (!strncmp(opt, "no", 2)) { val = 0; @@ -1388,7 +1388,7 @@ static NOINLINE int nfsmount(struct mntent *mp, long vfsflags, char *filteropts) nordirplus = !val; break; case 12: // acl - noacl = !val; + noacl = !val; break; default: bb_error_msg("unknown nfs mount option: %s%s", val ? "" : "no", opt); @@ -1404,7 +1404,7 @@ static NOINLINE int nfsmount(struct mntent *mp, long vfsflags, char *filteropts) | (nocto ? NFS_MOUNT_NOCTO : 0) | (noac ? NFS_MOUNT_NOAC : 0) | (nordirplus ? NFS_MOUNT_NORDIRPLUS : 0) - | (noacl ? NFS_MOUNT_NOACL : 0); + | (noacl ? NFS_MOUNT_NOACL : 0); if (nfs_mount_version >= 2) data.flags |= (tcp ? NFS_MOUNT_TCP : 0); if (nfs_mount_version >= 3) |