]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
Minor changes - removed param to log_init() since char *name_p is functionally
authorlon <lon>
Thu, 5 Oct 2000 19:14:27 +0000 (19:14 +0000)
committerlon <lon>
Thu, 5 Oct 2000 19:14:27 +0000 (19:14 +0000)
equivalent. (See statd.c)

utils/statd/log.h

index f00bb63ede914be7acac0efc3c76493d8985a032..723e6e3fe83240bf48611b14db0c85ce3816464e 100644 (file)
@@ -1,6 +1,7 @@
 /*
  * Copyright (C) 1995 Olaf Kirch
  * Modified by Jeffrey A. Uphoff, 1996, 1997, 1999.
+ * Modified by Lon Hohberger, Oct. 2000
  *
  * NSM for Linux.
  */
@@ -15,7 +16,7 @@
 
 #include <syslog.h>
 
-void   log_init(char *name);
+void   log_init();
 void   log_background(void);
 void   log_enable(int facility);
 int    log_enabled(int facility);
@@ -35,7 +36,7 @@ void  die(char *fmt, ...);
 #ifdef DEBUG
 #define dprintf                log
 #else
-#define dprintf                if (0) log
+#define dprintf                if (run_mode & MODE_LOG_STDERR) log
 #endif
 
 #endif /* _LOCKD_LOG_H_ */