silly switch style fix
This commit is contained in:
@@ -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;
|
||||
|
@@ -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:
|
||||
|
Reference in New Issue
Block a user