ftpd: fix a case when with -w unknown commands are ignored with no error code

Signed-off-by: Stefan Seyfried <seife@suse.de>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2009-06-04 19:03:20 +02:00
parent a43972cb0f
commit 8507e1f109

View File

@ -1320,6 +1320,8 @@ int ftpd_main(int argc UNUSED_PARAM, char **argv)
handle_appe(); handle_appe();
else if (cmdval == const_STOU) /* "store unique" */ else if (cmdval == const_STOU) /* "store unique" */
handle_stou(); handle_stou();
else
goto bad_cmd;
} }
#endif #endif
#if 0 #if 0
@ -1340,6 +1342,9 @@ int ftpd_main(int argc UNUSED_PARAM, char **argv)
* (doesn't necessarily mean "we must support them") * (doesn't necessarily mean "we must support them")
* foo 1.2.3: XXXX - comment * foo 1.2.3: XXXX - comment
*/ */
#if ENABLE_FEATURE_FTP_WRITE
bad_cmd:
#endif
cmdio_write_raw(STR(FTP_BADCMD)" Unknown command\r\n"); cmdio_write_raw(STR(FTP_BADCMD)" Unknown command\r\n");
} }
} }