summaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-27 19:51:06 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-27 19:51:06 +0000
commitc16bd212e341598452b7885d9e4ac2064f417673 (patch)
tree843350d8cd414849eadca5b65ef8f497834895d2 /networking
parent94d5d82bd84ec65d52c3df92276221d48990f306 (diff)
downloadbusybox-w32-c16bd212e341598452b7885d9e4ac2064f417673.tar.gz
busybox-w32-c16bd212e341598452b7885d9e4ac2064f417673.tar.bz2
busybox-w32-c16bd212e341598452b7885d9e4ac2064f417673.zip
silly switch style fix
Diffstat (limited to 'networking')
-rw-r--r--networking/libiproute/iproute.c2
-rw-r--r--networking/wget.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/networking/libiproute/iproute.c b/networking/libiproute/iproute.c
index c4bbd98b1..6c902eb0e 100644
--- a/networking/libiproute/iproute.c
+++ b/networking/libiproute/iproute.c
@@ -820,7 +820,7 @@ int do_iproute(int argc, char **argv)
820 if (*argv) { 820 if (*argv) {
821 command_num = compare_string_array(ip_route_commands, *argv); 821 command_num = compare_string_array(ip_route_commands, *argv);
822 } 822 }
823 switch(command_num) { 823 switch (command_num) {
824 case 0: /* add*/ 824 case 0: /* add*/
825 flags = NLM_F_CREATE|NLM_F_EXCL; 825 flags = NLM_F_CREATE|NLM_F_EXCL;
826 break; 826 break;
diff --git a/networking/wget.c b/networking/wget.c
index 0eb8cd610..654973996 100644
--- a/networking/wget.c
+++ b/networking/wget.c
@@ -388,7 +388,7 @@ read_response:
388 s = strchr(target.user, ':'); 388 s = strchr(target.user, ':');
389 if (s) 389 if (s)
390 *(s++) = '\0'; 390 *(s++) = '\0';
391 switch(ftpcmd("USER ", target.user, sfp, buf)) { 391 switch (ftpcmd("USER ", target.user, sfp, buf)) {
392 case 230: 392 case 230:
393 break; 393 break;
394 case 331: 394 case 331: