diff options
author | Matt Johnston <matt@ucc.asn.au> | 2015-12-15 21:55:51 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2015-12-15 21:55:51 +0800 |
commit | 3d33e65a3546193e05eb469d7c5a9b2b0931420d (patch) | |
tree | 8bca45fed4c974af5237f824850798a3d0d4fc1e /svr-main.c | |
parent | 2f62128297bc22c22f0da6617eeae53a1cd90dd2 (diff) | |
parent | 5ab562f69531a2d5438d22c0918003894e6cec0d (diff) |
Merge pull request #18 from annulen/dbclient_syslog
Support syslog logging in dbclient.
Diffstat (limited to 'svr-main.c')
-rw-r--r-- | svr-main.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -145,7 +145,7 @@ void main_noinetd() { if (svr_opts.forkbg) { int closefds = 0; #ifndef DEBUG_TRACE - if (!svr_opts.usingsyslog) { + if (!opts.usingsyslog) { closefds = 1; } #endif @@ -367,8 +367,8 @@ static void commonsetup() { struct sigaction sa_chld; #ifndef DISABLE_SYSLOG - if (svr_opts.usingsyslog) { - startsyslog(); + if (opts.usingsyslog) { + startsyslog(PROGNAME); } #endif |