diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2015-03-02 20:59:13 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2015-03-02 20:59:13 +0100 |
commit | 3aef814c0b08d9703280b4772060ce5016c683c4 (patch) | |
tree | 2cb48c9987797f43249c41e354024364852597e8 | |
parent | 7db2a7c20e8d48ad9cce934c9a6d2ee563d32c84 (diff) | |
download | busybox-w32-3aef814c0b08d9703280b4772060ce5016c683c4.tar.gz busybox-w32-3aef814c0b08d9703280b4772060ce5016c683c4.tar.bz2 busybox-w32-3aef814c0b08d9703280b4772060ce5016c683c4.zip |
ntpd: chnage help text about -l to say that it doesn't disable client code
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/ntpd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/networking/ntpd.c b/networking/ntpd.c index c016bfc50..0247abb6c 100644 --- a/networking/ntpd.c +++ b/networking/ntpd.c | |||
@@ -50,15 +50,15 @@ | |||
50 | //usage: "\n -q Quit after clock is set" | 50 | //usage: "\n -q Quit after clock is set" |
51 | //usage: "\n -N Run at high priority" | 51 | //usage: "\n -N Run at high priority" |
52 | //usage: "\n -w Do not set time (only query peers), implies -n" | 52 | //usage: "\n -w Do not set time (only query peers), implies -n" |
53 | //usage: IF_FEATURE_NTPD_SERVER( | ||
54 | //usage: "\n -l Run as server on port 123" | ||
55 | //usage: "\n -I IFACE Bind server to IFACE, implies -l" | ||
56 | //usage: ) | ||
57 | //usage: "\n -S PROG Run PROG after stepping time, stratum change, and every 11 mins" | 53 | //usage: "\n -S PROG Run PROG after stepping time, stratum change, and every 11 mins" |
58 | //usage: "\n -p PEER Obtain time from PEER (may be repeated)" | 54 | //usage: "\n -p PEER Obtain time from PEER (may be repeated)" |
59 | //usage: IF_FEATURE_NTPD_CONF( | 55 | //usage: IF_FEATURE_NTPD_CONF( |
60 | //usage: "\n If -p is not given, read /etc/ntp.conf" | 56 | //usage: "\n If -p is not given, read /etc/ntp.conf" |
61 | //usage: ) | 57 | //usage: ) |
58 | //usage: IF_FEATURE_NTPD_SERVER( | ||
59 | //usage: "\n -l Also run as server on port 123" | ||
60 | //usage: "\n -I IFACE Bind server to IFACE, implies -l" | ||
61 | //usage: ) | ||
62 | 62 | ||
63 | // -l and -p options are not compatible with "standard" ntpd: | 63 | // -l and -p options are not compatible with "standard" ntpd: |
64 | // it has them as "-l logfile" and "-p pidfile". | 64 | // it has them as "-l logfile" and "-p pidfile". |