diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-03-09 02:51:46 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-03-09 02:51:46 +0000 |
commit | 51c9bb1fd1eb60155d322885a5bc830ee016e2b0 (patch) | |
tree | 5d6b7c53b6f87834969bd06e5180844b99573986 /networking/ftpd.c | |
parent | ffb4bb3034b44bb61d8916f3e197e80c76062f1d (diff) | |
download | busybox-w32-51c9bb1fd1eb60155d322885a5bc830ee016e2b0.tar.gz busybox-w32-51c9bb1fd1eb60155d322885a5bc830ee016e2b0.tar.bz2 busybox-w32-51c9bb1fd1eb60155d322885a5bc830ee016e2b0.zip |
ftpd: add comment
Diffstat (limited to 'networking/ftpd.c')
-rw-r--r-- | networking/ftpd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/networking/ftpd.c b/networking/ftpd.c index 404bc98c3..bdd7a2db4 100644 --- a/networking/ftpd.c +++ b/networking/ftpd.c | |||
@@ -1106,10 +1106,11 @@ int ftpd_main(int argc UNUSED_PARAM, char **argv) | |||
1106 | } | 1106 | } |
1107 | #endif | 1107 | #endif |
1108 | else { | 1108 | else { |
1109 | /* Which unsupported commands were seen in the wild | 1109 | /* Which unsupported commands were seen in the wild? |
1110 | * (doesn't necessarily mean "we must support them") | 1110 | * (doesn't necessarily mean "we must support them") |
1111 | * wget 1.11.4: SIZE - todo. | 1111 | * wget 1.11.4: SIZE - todo. |
1112 | * lftp 3.6.3: MDTM - works fine without it anyway. | 1112 | * lftp 3.6.3: MDTM - works fine without it anyway. |
1113 | * IPv6-style PASV: "EPSV 2" | ||
1113 | */ | 1114 | */ |
1114 | cmdio_write(FTP_BADCMD, "Unknown command"); | 1115 | cmdio_write(FTP_BADCMD, "Unknown command"); |
1115 | } | 1116 | } |