aboutsummaryrefslogtreecommitdiff
path: root/networking/ftpd.c
diff options
context:
space:
mode:
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 6ca231c90..0d6a289c7 100644
--- a/networking/ftpd.c
+++ b/networking/ftpd.c
@@ -54,7 +54,7 @@
54//kbuild:lib-$(CONFIG_FTPD) += ftpd.o 54//kbuild:lib-$(CONFIG_FTPD) += ftpd.o
55 55
56//usage:#define ftpd_trivial_usage 56//usage:#define ftpd_trivial_usage
57//usage: "[-wvS]"IF_FEATURE_FTPD_AUTHENTICATION(" [-a USER]")" [-t N] [-T N] [DIR]" 57//usage: "[-wvS]"IF_FEATURE_FTPD_AUTHENTICATION(" [-a USER]")" [-t SEC] [-T SEC] [DIR]"
58//usage:#define ftpd_full_usage "\n\n" 58//usage:#define ftpd_full_usage "\n\n"
59//usage: IF_NOT_FEATURE_FTPD_AUTHENTICATION( 59//usage: IF_NOT_FEATURE_FTPD_AUTHENTICATION(
60//usage: "Anonymous FTP server. Client access occurs under ftpd's UID.\n" 60//usage: "Anonymous FTP server. Client access occurs under ftpd's UID.\n"
@@ -63,7 +63,7 @@
63//usage: "FTP server. " 63//usage: "FTP server. "
64//usage: ) 64//usage: )
65//usage: "Chroots to DIR, if this fails (run by non-root), cds to it.\n" 65//usage: "Chroots to DIR, if this fails (run by non-root), cds to it.\n"
66//usage: "Should be used as inetd service, inetd.conf line:\n" 66//usage: "It is an inetd service, inetd.conf line:\n"
67//usage: " 21 stream tcp nowait root ftpd ftpd /files/to/serve\n" 67//usage: " 21 stream tcp nowait root ftpd ftpd /files/to/serve\n"
68//usage: "Can be run from tcpsvd:\n" 68//usage: "Can be run from tcpsvd:\n"
69//usage: " tcpsvd -vE 0.0.0.0 21 ftpd /files/to/serve" 69//usage: " tcpsvd -vE 0.0.0.0 21 ftpd /files/to/serve"