Reverse logic so when network logging, it by default does not log locally.
authorEric Andersen <andersen@codepoet.org>
Mon, 11 Dec 2000 16:24:16 +0000 (16:24 -0000)
committerEric Andersen <andersen@codepoet.org>
Mon, 11 Dec 2000 16:24:16 +0000 (16:24 -0000)
applets/usage.c
docs/busybox.pod
docs/busybox.sgml
sysklogd/syslogd.c
syslogd.c
usage.c

index ae6cec8dfd8914e57e9e68c4b51a24abb15ae35e..74dc44060e8e25b3059fd0c768fd3a7e594fa020 100644 (file)
@@ -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
        ;
index 5e47984398c05df78ae48d9d3b7b80ac8cd841de..52ba63943a91cf5061a83ce411c2ebdaa3d7eccd 100644 (file)
@@ -1730,8 +1730,8 @@ Options:
        -n              Run as a foreground process
        -K              Do not start up the klogd process
        -O FILE Use an alternate log file (default=/var/log/messages)
-       -R HOST[:PORT]  Log messages to HOST on PORT (default=514) over UDP.
-       -N      Do not log anything locally -- network logging only
+       -R HOST[:PORT]  Log remotely to IP or hostname on PORT (default PORT=514/UDP)
+       -L      Log locally as well as network logging (defaut is network only)
 
 Example:
 
@@ -2292,4 +2292,4 @@ Enrique Zanardi <ezanardi@ull.es>
 
 =cut
 
-# $Id: busybox.pod,v 1.80 2000/12/09 16:37:53 andersen Exp $
+# $Id: busybox.pod,v 1.81 2000/12/11 16:24:16 andersen Exp $
index 7d86e19e2a770e3d1b2208e0c742613cdae43fe0..a4d1736986746cbfdfe3f99e789c3afa771f714e 100644 (file)
                        -n      Run as a foreground process
                        -K      Do not start up the klogd process
                        -O FILE Use an alternate log file (default=/var/log/messages)
-                       -R HOST[:PORT] Log messages to HOST on PORT (default=514) over UDP.
-                       -N      Do not log anything locally -- network logging only
+                       -R HOST[:PORT] Log remotely to IP or hostname on PORT (default PORT=514/UDP)
+                       -L      Log locally as well as network logging (defaut is network only)
                </screen>
                </para>
 
index 75d73e322bd07f79aa284d402617b16f9a6afb65..fd56aad97a399a8dfe35f2d18551401383d84770 100644 (file)
@@ -86,7 +86,7 @@ static char *RemoteHost;
 static int RemotePort = 514;
 /* To remote log or not to remote log, that is the question. */
 static int doRemoteLog = FALSE;
-static int local_logging = TRUE;
+static int local_logging = FALSE;
 #endif
 
 /* Note: There is also a function called "message()" in init.c */
@@ -531,8 +531,8 @@ extern int syslogd_main(int argc, char **argv)
                           doRemoteLog = TRUE;
                           stopDoingThat = TRUE;
                           break;
-                       case 'N':
-                               local_logging = FALSE;
+                       case 'L':
+                               local_logging = TRUE;
                                break;
 #endif
                        default:
index 75d73e322bd07f79aa284d402617b16f9a6afb65..fd56aad97a399a8dfe35f2d18551401383d84770 100644 (file)
--- a/syslogd.c
+++ b/syslogd.c
@@ -86,7 +86,7 @@ static char *RemoteHost;
 static int RemotePort = 514;
 /* To remote log or not to remote log, that is the question. */
 static int doRemoteLog = FALSE;
-static int local_logging = TRUE;
+static int local_logging = FALSE;
 #endif
 
 /* Note: There is also a function called "message()" in init.c */
@@ -531,8 +531,8 @@ extern int syslogd_main(int argc, char **argv)
                           doRemoteLog = TRUE;
                           stopDoingThat = TRUE;
                           break;
-                       case 'N':
-                               local_logging = FALSE;
+                       case 'L':
+                               local_logging = TRUE;
                                break;
 #endif
                        default:
diff --git a/usage.c b/usage.c
index ae6cec8dfd8914e57e9e68c4b51a24abb15ae35e..74dc44060e8e25b3059fd0c768fd3a7e594fa020 100644 (file)
--- a/usage.c
+++ b/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
        ;