diff options
author | Denis Vlasenko | 2007-01-04 17:59:59 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-01-04 17:59:59 +0000 |
commit | a9b60e93eeb4d2706ebc95bafb18bd4267a03d6f (patch) | |
tree | 541b0130abde25c96918f4c0176514c3b29baa9f /include/usage.h | |
parent | ceab8700dfa0a4f987c9872e12e57cfba6ddb95c (diff) | |
download | busybox-a9b60e93eeb4d2706ebc95bafb18bd4267a03d6f.zip busybox-a9b60e93eeb4d2706ebc95bafb18bd4267a03d6f.tar.gz |
new libbb func: xmalloc_realpath (+ use it where makes sense)
syslogd, logread: add debugging code (disabled)
syslogs: drastically smaller bss; fix "-C n" behaviour
Diffstat (limited to 'include/usage.h')
-rw-r--r-- | include/usage.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/usage.h b/include/usage.h index af518de..6202c4a 100644 --- a/include/usage.h +++ b/include/usage.h @@ -3021,7 +3021,8 @@ "\n -R HOST[:PORT] Log to IP or hostname on PORT (default PORT=514/UDP)" \ "\n -L Log locally and via network logging (default is network only)") \ USE_FEATURE_IPC_SYSLOG( \ - "\n -C [size(KiB)] Log to a circular buffer (read the buffer using logread)") + "\n -C[size(KiB)] Log to a circular buffer (read the buffer using logread)") + /* NB: -Csize shouldn't have space (because size is optional) */ #define syslogd_example_usage \ "$ syslogd -R masterlog:514\n" \ "$ syslogd -R 192.168.1.1:601\n" |