Only report errors to syslog if the debug flag is not set. (Otherwise
authorTheodore Tso <tytso@mit.edu>
Thu, 15 Sep 1994 16:49:32 +0000 (16:49 +0000)
committerTheodore Tso <tytso@mit.edu>
Thu, 15 Sep 1994 16:49:32 +0000 (16:49 +0000)
send them to stderr.)

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4244 dc483132-0cff-0310-8789-dd5450dbe970

src/slave/ChangeLog
src/slave/kpropd.c

index 0c5e4c648e9bd5018bb3b24c3da96b941305e6cb..630581b4e324b704e4129cf113fe6aba0aa237b8 100644 (file)
@@ -1,3 +1,8 @@
+Thu Sep 15 12:48:21 1994  Theodore Y. Ts'o  (tytso@dcl)
+
+       * kpropd.c (PRS): Only report errors to syslog if the debug flag
+       is not set.  (Otherwise, send them to stderr).
+
 Thu Aug  4 15:15:00 1994  Tom Yu  (tlyu@dragons-lair)
 
        * configure.in:
index 8b144f80f4ea451159145d915a8779597d09827a..780db3492368d77db71dfac5487273744359eb35 100644 (file)
@@ -389,8 +389,10 @@ void PRS(argv)
        /*
         * If not in debug mode, switch com_err reporting to syslog
         */
-       openlog("kpropd", LOG_PID | LOG_ODELAY, SYSLOG_CLASS);
-       set_com_err_hook(kpropd_com_err_proc);
+       if (! debug) {
+           openlog("kpropd", LOG_PID | LOG_ODELAY, SYSLOG_CLASS);
+           set_com_err_hook(kpropd_com_err_proc);
+       }
        /*
         * Get my hostname, so we can construct my service name
         */