summaryrefslogtreecommitdiffhomepage
path: root/svr-main.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2015-12-15 21:55:51 +0800
committerMatt Johnston <matt@ucc.asn.au>2015-12-15 21:55:51 +0800
commit3d33e65a3546193e05eb469d7c5a9b2b0931420d (patch)
tree8bca45fed4c974af5237f824850798a3d0d4fc1e /svr-main.c
parent2f62128297bc22c22f0da6617eeae53a1cd90dd2 (diff)
parent5ab562f69531a2d5438d22c0918003894e6cec0d (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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/svr-main.c b/svr-main.c
index cc59332..af56a7c 100644
--- a/svr-main.c
+++ b/svr-main.c
@@ -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