summaryrefslogtreecommitdiff
path: root/chat/jabberd/patches/patch-ac
diff options
context:
space:
mode:
Diffstat (limited to 'chat/jabberd/patches/patch-ac')
-rw-r--r--chat/jabberd/patches/patch-ac36
1 files changed, 0 insertions, 36 deletions
diff --git a/chat/jabberd/patches/patch-ac b/chat/jabberd/patches/patch-ac
deleted file mode 100644
index 0e96d9558e7..00000000000
--- a/chat/jabberd/patches/patch-ac
+++ /dev/null
@@ -1,36 +0,0 @@
-$NetBSD: patch-ac,v 1.2 2004/02/21 05:38:29 xtraeme Exp $
-
---- jabberd/jabberd.c.orig 2003-12-19 12:17:00.000000000 +0000
-+++ jabberd/jabberd.c 2003-12-19 12:17:52.000000000 +0000
-@@ -199,15 +199,6 @@
- if(home != NULL && chdir(home))
- fprintf(stderr,"Unable to access home folder %s: %s\n",home,strerror(errno));
-
-- /* background ourselves if we have been flagged to do so */
-- if(do_background != 0)
-- {
-- if (fork() != 0)
-- {
-- exit(0);
-- }
-- }
--
- /* load the config passing the file if it was manually set */
- cfgfile=ghash_get(cmd__line,"c");
- if(configurate(cfgfile))
-@@ -234,6 +225,15 @@
- dynamic_init();
- deliver_init();
-
-+ /* background ourselves if we have been flagged to do so */
-+ if(do_background != 0)
-+ {
-+ if (fork() != 0)
-+ {
-+ exit(0);
-+ }
-+ }
-+
- /* everything should be registered for the config pass, validate */
- deliver__flag = 0; /* pause deliver() while starting up */
- if(configo(0))