svn commit: trunk/busybox/networking

landley at busybox.net landley at busybox.net
Tue Jun 13 16:44:28 UTC 2006


Author: landley
Date: 2006-06-13 09:44:26 -0700 (Tue, 13 Jun 2006)
New Revision: 15372

Log:
Whitespace cleanup from Denis Vlasenko.


Modified:
   trunk/busybox/networking/wget.c


Changeset:
Modified: trunk/busybox/networking/wget.c
===================================================================
--- trunk/busybox/networking/wget.c	2006-06-13 16:17:16 UTC (rev 15371)
+++ trunk/busybox/networking/wget.c	2006-06-13 16:44:26 UTC (rev 15372)
@@ -120,11 +120,11 @@
 
 	char al[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
 		    "0123456789+/";
-		char *s = buf;
+	char *s = buf;
 
 	while(*p) {
-				if (s >= buf+len-4)
-					bb_error_msg_and_die("buffer overflow");
+		if (s >= buf+len-4)
+			bb_error_msg_and_die("buffer overflow");
 		*(s++) = al[(*p >> 2) & 0x3F];
 		*(s++) = al[((*p << 4) & 0x30) | ((*(p+1) >> 4) & 0x0F)];
 		*s = *(s+1) = '=';
@@ -135,7 +135,7 @@
 		*(s++) = al[*(p++) & 0x3F];
 	}
 
-		return buf;
+	return buf;
 }
 #endif
 
@@ -153,7 +153,7 @@
 	{ "quiet",           0, NULL, 'q' },
 	{ "passive-ftp",     0, NULL, 139 },
 	{ "output-document", 1, NULL, 'O' },
-	{ "header",	         1, NULL, 131 },
+	{ "header",          1, NULL, 131 },
 	{ "directory-prefix",1, NULL, 'P' },
 	{ "proxy",           1, NULL, 'Y' },
 	{ 0,                 0, 0, 0 }
@@ -358,9 +358,9 @@
 				close_delete_and_die("no response from server");
 
 			for (s = buf ; *s != '\0' && !isspace(*s) ; ++s)
-			;
+				;
 			for ( ; isspace(*s) ; ++s)
-			;
+				;
 			switch (status = atoi(s)) {
 				case 0:
 				case 100:
@@ -402,7 +402,7 @@
 					if (strcasecmp(s, "chunked") == 0) {
 						chunked = got_clen = 1;
 					} else {
-					close_delete_and_die("server wants to do %s transfer encoding", s);
+						close_delete_and_die("server wants to do %s transfer encoding", s);
 					}
 				}
 				if (strcasecmp(buf, "location") == 0) {
@@ -494,7 +494,6 @@
 
 		if (ftpcmd("RETR /", target.path, sfp, buf) > 150)
 			close_delete_and_die("RETR: %s", buf+4);
-
 	}
 
 




More information about the busybox-cvs mailing list