diff options
author | Andrew Tridgell <tridge@samba.org> | 1997-12-03 03:21:25 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1997-12-03 03:21:25 +0000 |
commit | cc12fc66d1f958c3c04d6f106b4e9128f6bce925 (patch) | |
tree | 6808334a771d69d1598331a3ecd56ada703e76b3 /source3/lib | |
parent | bd1abc6927d9f99161c3b6fa2a715d935fa24bf1 (diff) | |
download | samba-cc12fc66d1f958c3c04d6f106b4e9128f6bce925.tar.gz samba-cc12fc66d1f958c3c04d6f106b4e9128f6bce925.tar.bz2 samba-cc12fc66d1f958c3c04d6f106b4e9128f6bce925.zip |
I'm slowly getting though the todo list :-)
This change allows people to select the SYSLOG_FACILITY in local.h, or
add it to the Makefile if they want to.
(This used to be commit afe88facbfb85113105bf516e066b6c1e971f6b7)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c index f5cae86430..18f1240bbd 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -102,10 +102,10 @@ void setup_logging(char *pname,BOOL interactive) char *p = strrchr(pname,'/'); if (p) pname = p+1; #ifdef LOG_DAEMON - openlog(pname, LOG_PID, LOG_DAEMON); -#else /* LOG_DAEMON - for old systems that have no facility codes. */ + openlog(pname, LOG_PID, SYSLOG_FACILITY); +#else /* for old systems that have no facility codes. */ openlog(pname, LOG_PID); -#endif /* LOG_DAEMON */ +#endif } #endif if (interactive) { |