diff options
Diffstat (limited to 'networking')
-rw-r--r-- | networking/libiproute/iproute.c | 2 | ||||
-rw-r--r-- | networking/wget.c | 2 |
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) if (*argv) { command_num = compare_string_array(ip_route_commands, *argv); } - switch(command_num) { + switch (command_num) { case 0: /* add*/ flags = NLM_F_CREATE|NLM_F_EXCL; 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: s = strchr(target.user, ':'); if (s) *(s++) = '\0'; - switch(ftpcmd("USER ", target.user, sfp, buf)) { + switch (ftpcmd("USER ", target.user, sfp, buf)) { case 230: break; case 331: |