diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-12-11 16:24:16 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-12-11 16:24:16 +0000 |
commit | 70d09ed1cf54ae20d38c5c56c5afb5994cc46f32 (patch) | |
tree | 03967343beeea7544249bd5195c669498e051006 /applets | |
parent | 9962cd9f7879e8b51ab6eca5abd7c5e51cec8685 (diff) | |
download | busybox-70d09ed1cf54ae20d38c5c56c5afb5994cc46f32.tar.gz |
Reverse logic so when network logging, it by default does not log locally.
Diffstat (limited to 'applets')
-rw-r--r-- | applets/usage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/usage.c b/applets/usage.c index ae6cec8df..74dc44060 100644 --- a/applets/usage.c +++ b/applets/usage.c @@ -1176,7 +1176,7 @@ const char syslogd_usage[] = "\t-O FILE\t\tUse an alternate log file (default=/var/log/messages)\n" #ifdef BB_FEATURE_REMOTE_LOG "\t-R HOST[:PORT]\t\tLog remotely to IP or hostname on PORT (default PORT=514/UDP)\n" - "\t-N\t\tDo not log anything locally -- network logging only.\n" + "\t-L\t\tLog locally as well as network logging (defaut is network only)\n" #endif #endif ; |