summaryrefslogtreecommitdiff
path: root/networking/ftpd.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-07-27 10:53:09 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-07-27 10:53:09 +0200
commit68b653b66b0db6b1554806650fb0bebd7af9ef3b (patch)
tree6549966edd734b162fc4f6c88271b1023fa0d013 /networking/ftpd.c
parent86d5bf4246a7ba68d220bc6c7a7a3be62119dc12 (diff)
downloadbusybox-w32-68b653b66b0db6b1554806650fb0bebd7af9ef3b.tar.gz
busybox-w32-68b653b66b0db6b1554806650fb0bebd7af9ef3b.tar.bz2
busybox-w32-68b653b66b0db6b1554806650fb0bebd7af9ef3b.zip
config: trim/improve item names and help texts, take 2
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/ftpd.c')
-rw-r--r--networking/ftpd.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/networking/ftpd.c b/networking/ftpd.c
index aee00e1c3..c562c2886 100644
--- a/networking/ftpd.c
+++ b/networking/ftpd.c
@@ -18,11 +18,12 @@
18//config: Simple FTP daemon. You have to run it via inetd. 18//config: Simple FTP daemon. You have to run it via inetd.
19//config: 19//config:
20//config:config FEATURE_FTPD_WRITE 20//config:config FEATURE_FTPD_WRITE
21//config: bool "Enable upload commands" 21//config: bool "Enable -w (upload commands)"
22//config: default y 22//config: default y
23//config: depends on FTPD 23//config: depends on FTPD
24//config: help 24//config: help
25//config: Enable all kinds of FTP upload commands (-w option) 25//config: Enable -w option. "ftpd -w" will accept upload commands
26//config: such as STOR, STOU, APPE, DELE, MKD, RMD, rename commands.
26//config: 27//config:
27//config:config FEATURE_FTPD_ACCEPT_BROKEN_LIST 28//config:config FEATURE_FTPD_ACCEPT_BROKEN_LIST
28//config: bool "Enable workaround for RFC-violating clients" 29//config: bool "Enable workaround for RFC-violating clients"
@@ -40,7 +41,13 @@
40//config: default y 41//config: default y
41//config: depends on FTPD 42//config: depends on FTPD
42//config: help 43//config: help
43//config: Enable basic system login as seen in telnet etc. 44//config: Require login, and change to logged in user's UID:GID before
45//config: accessing any files. Option "-a USER" allows "anonymous"
46//config: logins (treats them as if USER logged in).
47//config:
48//config: If this option is not selected, ftpd runs with the rights
49//config: of the user it was started under, and does not require login.
50//config: Take care to not launch it under root.
44 51
45//applet:IF_FTPD(APPLET(ftpd, BB_DIR_USR_SBIN, BB_SUID_DROP)) 52//applet:IF_FTPD(APPLET(ftpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
46 53