aboutsummaryrefslogtreecommitdiff
path: root/networking/ftpd.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-02-24 14:27:55 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-02-24 14:27:55 +0100
commit8031848938032b786c71d1fadebea47e5451c19a (patch)
tree158e310d7a8008caade21d073e33c3a77037ab8b /networking/ftpd.c
parent64bb95a361c9d82e2abed90e0402459c68fb14b2 (diff)
downloadbusybox-8031848938032b786c71d1fadebea47e5451c19a.tar.gz
typo fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/ftpd.c')
-rw-r--r--networking/ftpd.c4
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)
opts = getopt32(argv, "l1vS" IF_FEATURE_FTP_WRITE("w") "t:T:", &G.timeout, &abs_timeout, &G.verbose, &verbose_S);
if (opts & (OPT_l|OPT_1)) {
/* Our secret backdoor to ls */
-/* TODO: pass -n? It prevents user/group resolution, whicj may not work in chroot anyway */
+/* TODO: pass -n? It prevents user/group resolution, which may not work in chroot anyway */
/* TODO: pass -A? It shows dot files */
-/* TODO: pass --group-directories-first? would be nice, but ls don't do that yet */
+/* TODO: pass --group-directories-first? would be nice, but ls doesn't do that yet */
xchdir(argv[2]);
argv[2] = (char*)"--";
/* memset(&G, 0, sizeof(G)); - ls_main does it */