summaryrefslogtreecommitdiff
path: root/nscd
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2012-12-23 09:45:07 +0100
committerAndreas Schwab <schwab@suse.de>2013-04-15 09:49:55 +0200
commit0582f6b3d6fab2128ee43a06250571922ee7c1e3 (patch)
tree6259a98f93bfb5287cc816327167b10816ce863a /nscd
parent5cb26d0aed9c7414f0d391a0ca766786625de8b5 (diff)
nscd: don't fork twice
Diffstat (limited to 'nscd')
-rw-r--r--nscd/nscd.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/nscd/nscd.c b/nscd/nscd.c
index 26cf3c2692..ffbc6f8bc9 100644
--- a/nscd/nscd.c
+++ b/nscd/nscd.c
@@ -252,15 +252,6 @@ main (int argc, char **argv)
for (i = min_close_fd; i < getdtablesize (); i++)
close (i);
- if (run_mode == RUN_DAEMONIZE)
- {
- pid = fork ();
- if (pid == -1)
- error (EXIT_FAILURE, errno, _("cannot fork"));
- if (pid != 0)
- exit (0);
- }
-
setsid ();
if (chdir ("/") != 0)