whitespace fixes
authorDenys Vlasenko <vda.linux@googlemail.com>
Fri, 20 Apr 2012 13:07:22 +0000 (15:07 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Fri, 20 Apr 2012 13:07:22 +0000 (15:07 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
libbb/lineedit.c
util-linux/mount.c

index 460e27fede3ed8800025d82e6ef97c0e9c3b0690..db8416712f40f5a8cc55adaadde7fe4ede6e2290 100644 (file)
@@ -2517,7 +2517,7 @@ int FAST_FUNC read_line_input(line_input_t *st, const char *prompt, char *comman
                        switch (ic) {
                                //case KEYCODE_LEFT: - bash doesn't do this
                                case 'b':
-                                       ctrl_left();
+                                       ctrl_left();
                                        break;
                                //case KEYCODE_RIGHT: - bash doesn't do this
                                case 'f':
index 807e89747556f4a6debf2f8ee0ce1637288c7d0b..f1da30faccade2805cc98315b3262df684258b7c 100644 (file)
@@ -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)