whitespace fixes, no code changes
authorDenis Vlasenko <vda.linux@googlemail.com>
Wed, 29 Oct 2008 01:19:15 +0000 (01:19 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Wed, 29 Oct 2008 01:19:15 +0000 (01:19 -0000)
loginutils/Config.in
shell/hush.c
sysklogd/syslogd.c
util-linux/mdev.c

index aca85a1ba6d33201b5d56e25f08d857a7d4ec089..9aa0abb2a9cab770db903e4c0b7bfb4ff3e98721 100644 (file)
@@ -233,12 +233,12 @@ config CRYPTPW
          Applet for crypting a string.
 
 config CHPASSWD
-       bool "chpasswd"
-       default n
-       help
-         chpasswd  reads  a  file  of user name and password pairs from
-         standard input and uses this information to update a group of
-         existing users.
+       bool "chpasswd"
+       default n
+       help
+         chpasswd  reads  a  file  of user name and password pairs from
+         standard input and uses this information to update a group of
+         existing users.
 
 config SU
        bool "su"
index 1e6df62843c20c9a41dce259489fb24e1b0afa20..421272971a3a39fe5075ab6cae64a1ca2a864b84 100644 (file)
@@ -1484,7 +1484,7 @@ static void pseudo_exec_argv(nommu_save_t *nommu_save, char **argv, int assignme
        if (!argv[assignment_cnt])
                _exit(EXIT_SUCCESS);
 
-        new_env = expand_assignments(argv, assignment_cnt);
+       new_env = expand_assignments(argv, assignment_cnt);
 #if BB_MMU
        putenv_all(new_env);
        free(new_env); /* optional */
index 4c9efd8ba3227dbe9a520bc6d3a860af3d1488d8..38ea3d7ff2e4177907cc94b0c8b2dca0d167468e 100644 (file)
@@ -364,7 +364,7 @@ static void log_locally(time_t now, char *msg)
        }
        G.curFileSize +=
 #endif
-                       full_write(G.logFD, msg, len);
+                       full_write(G.logFD, msg, len);
        fl.l_type = F_UNLCK;
        fcntl(G.logFD, F_SETLKW, &fl);
 }
index 5ac8015551c6ebb4a299065487d7428cf84be7a7..34cabc93457b4a931278c8fef9acb1ba54bf2d13 100644 (file)
@@ -101,9 +101,9 @@ static void make_device(char *path, int delete)
         * "/sys/block/..." is for block devices. "/sys/bus" etc is not.
         * But since 2.6.25 block devices are also in /sys/class/block.
         * We use strstr("/block/") to forestall future surprises. */
-        type = S_IFCHR;
+       type = S_IFCHR;
        if (strstr(path, "/block/"))
-               type = S_IFBLK;
+               type = S_IFBLK;
 
 #if ENABLE_FEATURE_MDEV_CONF
        parser = config_open2("/etc/mdev.conf", fopen_for_read);