Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-03 16:21:59 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-03 16:21:59 +0400
commit27af5a0dd34b1b392aa69b548e18935aafe66e5f (patch)
tree0de777f153dec72a0339c12d360e8bf156d17b45 /networking/zcip.c
parent87d80dcc3e81d80caa11ed88fe6136ffe3e605dc (diff)
replacing func() with xfunc() where appropriate
Diffstat (limited to 'networking/zcip.c')
-rw-r--r--networking/zcip.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/networking/zcip.c b/networking/zcip.c
index 8e6d8792d..e9dd05011 100644
--- a/networking/zcip.c
+++ b/networking/zcip.c
@@ -288,10 +288,7 @@ fail:
// daemonize now; don't delay system startup
if (!foreground) {
- if (daemon(0, verbose) < 0) {
- why = "daemon";
- goto bad;
- }
+ xdaemon(0, verbose);
syslog(LOG_INFO, "start, interface %s", intf);
}