diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2009-08-07 20:13:49 +0200 |
---|---|---|
committer | Paul Jakma <paul@quagga.net> | 2009-08-13 11:21:13 +0200 |
commit | 065de90380c88d9fcc116627f714bed9984c2723 (patch) | |
tree | 79061a2699e0dc3e87c218b3b57c2f0577d5a69a /tests | |
parent | bgp: missing pieces from listener patch (diff) | |
download | frr-065de90380c88d9fcc116627f714bed9984c2723.tar.xz frr-065de90380c88d9fcc116627f714bed9984c2723.zip |
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 'tests')
-rw-r--r-- | tests/main.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/main.c b/tests/main.c index edc3b2de9..e0fbb4d51 100644 --- a/tests/main.c +++ b/tests/main.c @@ -174,8 +174,11 @@ main (int argc, char **argv) sort_node (); /* Change to the daemon program. */ - if (daemon_mode) - daemon (0, 0); + if (daemon_mode && daemon (0, 0) < 0) + { + fprintf(stderr, "daemon failed: %s", strerror(errno)); + exit (1); + } /* Create VTY socket */ vty_serv_sock (vty_addr, vty_port, "/tmp/.heavy.sock"); |