summaryrefslogtreecommitdiffstats
path: root/mbbsd/mbbsd.c
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-04-28 22:29:26 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-04-28 22:29:26 +0800
commit57456cdf52f2dd420aed9a5653a0beef51d3bdaa (patch)
treec52eb4bb47dd776b6541a9aaf6e93c736bfebc0a /mbbsd/mbbsd.c
parent1cfd2ba12337bbad41d8e1c1bb5b828d7ef9bc95 (diff)
downloadpttbbs-57456cdf52f2dd420aed9a5653a0beef51d3bdaa.tar
pttbbs-57456cdf52f2dd420aed9a5653a0beef51d3bdaa.tar.gz
pttbbs-57456cdf52f2dd420aed9a5653a0beef51d3bdaa.tar.bz2
pttbbs-57456cdf52f2dd420aed9a5653a0beef51d3bdaa.tar.lz
pttbbs-57456cdf52f2dd420aed9a5653a0beef51d3bdaa.tar.xz
pttbbs-57456cdf52f2dd420aed9a5653a0beef51d3bdaa.tar.zst
pttbbs-57456cdf52f2dd420aed9a5653a0beef51d3bdaa.zip
DEBUG
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@129 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/mbbsd.c')
-rw-r--r--mbbsd/mbbsd.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/mbbsd/mbbsd.c b/mbbsd/mbbsd.c
index 49915683..e7a2f84d 100644
--- a/mbbsd/mbbsd.c
+++ b/mbbsd/mbbsd.c
@@ -1,4 +1,4 @@
-/* $Id: mbbsd.c,v 1.22 2002/04/27 15:50:17 in2 Exp $ */
+/* $Id: mbbsd.c,v 1.23 2002/04/28 14:29:26 in2 Exp $ */
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
@@ -88,10 +88,12 @@ start_daemon ()
struct tm *dummy_time = localtime (&dummy);
strftime (buf, 80, "%d/%b/%Y:%H:%M:%S", dummy_time);
-
+
+#ifndef NO_FORK
if ((n = fork ())){
exit (0);
}
+#endif
/* rocker.011018: it's a good idea to close all unexcept fd!! */
n = getdtablesize ();
@@ -103,9 +105,11 @@ start_daemon ()
/* rocker.011018: after new session,
we should insure the process is clean daemon */
+#ifndef NO_FORK
if ((n = fork ())){
exit (0);
}
+#endif
}
static void
@@ -1363,11 +1367,15 @@ daemon_login (int argc, char *argv[], char *envp[])
close(csock);
continue;
}
-
+
+#ifdef NO_FORK
+ break;
+#else
if(fork()==0)
break;
else
close(csock);
+#endif
}
/* here is only child running */