summaryrefslogtreecommitdiff
path: root/ripngd
diff options
context:
space:
mode:
authorStephen Hemminger <shemminger@vyatta.com>2009-08-07 11:13:49 -0700
committerPaul Jakma <paul@quagga.net>2009-08-13 10:21:13 +0100
commit065de90380c88d9fcc116627f714bed9984c2723 (patch)
tree79061a2699e0dc3e87c218b3b57c2f0577d5a69a /ripngd
parent5bd5881838c22e075c3d0c245a8952a55e9dca38 (diff)
all: check return value from daemon() call
* */*main.c: (main) Current versions of Gcc warn if the return value for daemon() is not checked. So add a simple test and exit on failure.
Diffstat (limited to 'ripngd')
-rw-r--r--ripngd/ripng_main.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/ripngd/ripng_main.c b/ripngd/ripng_main.c
index f174610d..85209a15 100644
--- a/ripngd/ripng_main.c
+++ b/ripngd/ripng_main.c
@@ -288,8 +288,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("RIPNGd daemon failed: %s", strerror(errno));
+ exit (1);
+ }
/* Create VTY socket */
vty_serv_sock (vty_addr, vty_port, RIPNG_VTYSH_PATH);