Browse Source
Merge pull request #321 from switch-iot/fix_sn_daemon
fix build error for supernode when declared N2N_HAVE_DAEMON
pull/324/head
Luca Deri
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/sn.c
|
@ -356,7 +356,7 @@ int main(int argc, char * const argv[]) { |
|
|
|
|
|
|
|
|
#if defined(N2N_HAVE_DAEMON) |
|
|
#if defined(N2N_HAVE_DAEMON) |
|
|
if(sss_node.daemon) { |
|
|
if(sss_node.daemon) { |
|
|
useSyslog=1; /* traceEvent output now goes to syslog. */ |
|
|
setUseSyslog(1); /* traceEvent output now goes to syslog. */ |
|
|
|
|
|
|
|
|
if(-1 == daemon(0, 0)) { |
|
|
if(-1 == daemon(0, 0)) { |
|
|
traceEvent(TRACE_ERROR, "Failed to become daemon."); |
|
|
traceEvent(TRACE_ERROR, "Failed to become daemon."); |
|
|