svn commit: trunk/busybox: loginutils shell sysklogd util-linux

vda at busybox.net vda at busybox.net
Wed Oct 29 01:19:15 UTC 2008


Author: vda
Date: 2008-10-28 18:19:15 -0700 (Tue, 28 Oct 2008)
New Revision: 23840

Log:
whitespace fixes, no code changes



Modified:
   trunk/busybox/loginutils/Config.in
   trunk/busybox/shell/hush.c
   trunk/busybox/sysklogd/syslogd.c
   trunk/busybox/util-linux/mdev.c


Changeset:
Modified: trunk/busybox/loginutils/Config.in
===================================================================
--- trunk/busybox/loginutils/Config.in	2008-10-29 00:58:04 UTC (rev 23839)
+++ trunk/busybox/loginutils/Config.in	2008-10-29 01:19:15 UTC (rev 23840)
@@ -233,12 +233,12 @@
 	  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"

Modified: trunk/busybox/shell/hush.c
===================================================================
--- trunk/busybox/shell/hush.c	2008-10-29 00:58:04 UTC (rev 23839)
+++ trunk/busybox/shell/hush.c	2008-10-29 01:19:15 UTC (rev 23840)
@@ -1484,7 +1484,7 @@
 	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 */

Modified: trunk/busybox/sysklogd/syslogd.c
===================================================================
--- trunk/busybox/sysklogd/syslogd.c	2008-10-29 00:58:04 UTC (rev 23839)
+++ trunk/busybox/sysklogd/syslogd.c	2008-10-29 01:19:15 UTC (rev 23840)
@@ -364,7 +364,7 @@
 	}
 	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);
 }

Modified: trunk/busybox/util-linux/mdev.c
===================================================================
--- trunk/busybox/util-linux/mdev.c	2008-10-29 00:58:04 UTC (rev 23839)
+++ trunk/busybox/util-linux/mdev.c	2008-10-29 01:19:15 UTC (rev 23840)
@@ -101,9 +101,9 @@
 	 * "/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);




More information about the busybox-cvs mailing list