diff options
Diffstat (limited to 'ospfd')
-rw-r--r-- | ospfd/ospf_main.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ospfd/ospf_main.c b/ospfd/ospf_main.c index 2dd997e8..8b9a3458 100644 --- a/ospfd/ospf_main.c +++ b/ospfd/ospf_main.c @@ -314,8 +314,11 @@ main (int argc, char **argv) return(0); /* Change to the daemon program. */ - if (daemon_mode) - daemon (0, 0); + if (daemon_mode && daemon (0, 0) < 0) + { + zlog_err("OSPFd daemon failed: %s", strerror(errno)); + exit (1); + } /* Process id file create. */ pid_output (pid_file); |