svn commit: trunk/busybox: coreutils init networking

vda at busybox.net vda at busybox.net
Mon Jan 7 19:06:47 UTC 2008


Author: vda
Date: 2008-01-07 11:06:47 -0800 (Mon, 07 Jan 2008)
New Revision: 20812

Log:
whitespace fixes



Modified:
   trunk/busybox/coreutils/tac.c
   trunk/busybox/init/Config.in
   trunk/busybox/networking/netstat.c


Changeset:
Modified: trunk/busybox/coreutils/tac.c
===================================================================
--- trunk/busybox/coreutils/tac.c	2008-01-07 16:51:25 UTC (rev 20811)
+++ trunk/busybox/coreutils/tac.c	2008-01-07 19:06:47 UTC (rev 20812)
@@ -28,7 +28,7 @@
 	char *line;
 	llist_t *list = NULL;
 	int retval = EXIT_SUCCESS;
-	
+
 	argv++;
 	if (!*argv)
 		*--argv = (char *)"-";
@@ -48,7 +48,7 @@
 		errno = 0;
 		/* FIXME: NUL bytes are mishandled. */
 		while ((line = xmalloc_fgets(f)) != NULL)
-			llist_add_to(&list, line);	
+			llist_add_to(&list, line);
 
 		/* xmalloc_fgets uses getc and returns NULL on error or EOF. */
 		/* It sets errno to ENOENT on EOF, but fopen_or_warn_stdin would */
@@ -63,6 +63,6 @@
 		printf("%s", list->data);
 		list = list->link;
 	}
-	
+
 	return retval;
 }

Modified: trunk/busybox/init/Config.in
===================================================================
--- trunk/busybox/init/Config.in	2008-01-07 16:51:25 UTC (rev 20811)
+++ trunk/busybox/init/Config.in	2008-01-07 19:06:47 UTC (rev 20812)
@@ -32,8 +32,8 @@
 	default y
 	depends on FEATURE_USE_INITTAB
 	help
-	  When respawn entries are removed from inittab and a SIGHUP is 
-	  sent to init, this feature will kill the processes that have 
+	  When respawn entries are removed from inittab and a SIGHUP is
+	  sent to init, this feature will kill the processes that have
 	  been removed.
 
 config FEATURE_KILL_DELAY

Modified: trunk/busybox/networking/netstat.c
===================================================================
--- trunk/busybox/networking/netstat.c	2008-01-07 16:51:25 UTC (rev 20811)
+++ trunk/busybox/networking/netstat.c	2008-01-07 19:06:47 UTC (rev 20812)
@@ -353,7 +353,7 @@
 		return 0; /* skip header */
 
 	/* 2.6.15 may report lines like "... @/tmp/fam-user-^@^@^@^@^@^@^@..."
-	 * Other users report long lines filled by NUL bytes. 
+	 * Other users report long lines filled by NUL bytes.
 	 * (those ^@ are NUL bytes too). We see them as empty lines. */
 	if (!line[0])
 		return 0;




More information about the busybox-cvs mailing list