summaryrefslogtreecommitdiffstats
path: root/util/xchatd.c
diff options
context:
space:
mode:
authorvictor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-09-10 08:49:47 +0800
committervictor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-09-10 08:49:47 +0800
commit540cfa70e8e8b4db3cc2addccfcbeeb69fffa033 (patch)
tree6a4dec7d69249e48a6f79c4436eb634cb28744b2 /util/xchatd.c
parenta8a0ef3c4d10bf576054dc26348d9b4e6efeecc2 (diff)
downloadpttbbs-540cfa70e8e8b4db3cc2addccfcbeeb69fffa033.tar
pttbbs-540cfa70e8e8b4db3cc2addccfcbeeb69fffa033.tar.gz
pttbbs-540cfa70e8e8b4db3cc2addccfcbeeb69fffa033.tar.bz2
pttbbs-540cfa70e8e8b4db3cc2addccfcbeeb69fffa033.tar.lz
pttbbs-540cfa70e8e8b4db3cc2addccfcbeeb69fffa033.tar.xz
pttbbs-540cfa70e8e8b4db3cc2addccfcbeeb69fffa033.tar.zst
pttbbs-540cfa70e8e8b4db3cc2addccfcbeeb69fffa033.zip
merge back from branch victor.solaris
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2189 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'util/xchatd.c')
-rw-r--r--util/xchatd.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/util/xchatd.c b/util/xchatd.c
index 862ecf2c..22be9620 100644
--- a/util/xchatd.c
+++ b/util/xchatd.c
@@ -3135,7 +3135,7 @@ start_daemon()
if (fd >= 0)
{
/* sprintf(buf, "%5d\n", value); */
- sprintf(buf, "%5d\n", getpid());
+ sprintf(buf, "%5d\n", (int)getpid());
write(fd, buf, 6);
close(fd);
}
@@ -3148,7 +3148,7 @@ start_daemon()
for (fd = 1; fd < NSIG; fd++)
{
- signal(fd, SIG_IGN);
+ Signal(fd, SIG_IGN);
}
#endif
@@ -3297,16 +3297,16 @@ main()
log_init();
- signal(SIGBUS, SIG_IGN);
- signal(SIGSEGV, SIG_IGN);
- signal(SIGPIPE, SIG_IGN);
- signal(SIGURG, SIG_IGN);
+ Signal(SIGBUS, SIG_IGN);
+ Signal(SIGSEGV, SIG_IGN);
+ Signal(SIGPIPE, SIG_IGN);
+ Signal(SIGURG, SIG_IGN);
- signal(SIGCHLD, reaper);
- signal(SIGTERM, abort_server);
+ Signal(SIGCHLD, reaper);
+ Signal(SIGTERM, abort_server);
#ifdef SERVER_USAGE
- signal(SIGPROF, server_usage);
+ Signal(SIGPROF, server_usage);
#endif
/* ----------------------------- */