diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-02-24 14:27:55 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-02-24 14:27:55 +0100 |
commit | 8031848938032b786c71d1fadebea47e5451c19a (patch) | |
tree | 158e310d7a8008caade21d073e33c3a77037ab8b | |
parent | 64bb95a361c9d82e2abed90e0402459c68fb14b2 (diff) | |
download | busybox-w32-8031848938032b786c71d1fadebea47e5451c19a.tar.gz busybox-w32-8031848938032b786c71d1fadebea47e5451c19a.tar.bz2 busybox-w32-8031848938032b786c71d1fadebea47e5451c19a.zip |
typo fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/ftpd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/ftpd.c b/networking/ftpd.c index 186ff50ce..7605d48f3 100644 --- a/networking/ftpd.c +++ b/networking/ftpd.c | |||
@@ -1127,9 +1127,9 @@ int ftpd_main(int argc UNUSED_PARAM, char **argv) | |||
1127 | opts = getopt32(argv, "l1vS" IF_FEATURE_FTP_WRITE("w") "t:T:", &G.timeout, &abs_timeout, &G.verbose, &verbose_S); | 1127 | opts = getopt32(argv, "l1vS" IF_FEATURE_FTP_WRITE("w") "t:T:", &G.timeout, &abs_timeout, &G.verbose, &verbose_S); |
1128 | if (opts & (OPT_l|OPT_1)) { | 1128 | if (opts & (OPT_l|OPT_1)) { |
1129 | /* Our secret backdoor to ls */ | 1129 | /* Our secret backdoor to ls */ |
1130 | /* TODO: pass -n? It prevents user/group resolution, whicj may not work in chroot anyway */ | 1130 | /* TODO: pass -n? It prevents user/group resolution, which may not work in chroot anyway */ |
1131 | /* TODO: pass -A? It shows dot files */ | 1131 | /* TODO: pass -A? It shows dot files */ |
1132 | /* TODO: pass --group-directories-first? would be nice, but ls don't do that yet */ | 1132 | /* TODO: pass --group-directories-first? would be nice, but ls doesn't do that yet */ |
1133 | xchdir(argv[2]); | 1133 | xchdir(argv[2]); |
1134 | argv[2] = (char*)"--"; | 1134 | argv[2] = (char*)"--"; |
1135 | /* memset(&G, 0, sizeof(G)); - ls_main does it */ | 1135 | /* memset(&G, 0, sizeof(G)); - ls_main does it */ |