diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-10-01 22:13:02 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:07:38 -0500 |
commit | efa384375f61049d7e7c43a77dc8abe0e034e04d (patch) | |
tree | 9640f28b0ecc1e7e9a309254fcce6ed2b1950a2f /source4/smbd/server.c | |
parent | 621fcfcd1c8dc4ccbe8f3d58d988b9ce40b3fad3 (diff) | |
download | samba-efa384375f61049d7e7c43a77dc8abe0e034e04d.tar.gz samba-efa384375f61049d7e7c43a77dc8abe0e034e04d.tar.xz samba-efa384375f61049d7e7c43a77dc8abe0e034e04d.zip |
r25454: Use standard bool types in a couple more places.
(This used to be commit 9243b551f30c7aa2763115516a6adcfe5bbddc58)
Diffstat (limited to 'source4/smbd/server.c')
-rw-r--r-- | source4/smbd/server.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source4/smbd/server.c b/source4/smbd/server.c index e86ddc910b..dcec02d3b7 100644 --- a/source4/smbd/server.c +++ b/source4/smbd/server.c @@ -123,25 +123,25 @@ static void sig_term(int sig) static void setup_signals(void) { /* we are never interested in SIGPIPE */ - BlockSignals(True,SIGPIPE); + BlockSignals(true,SIGPIPE); #if defined(SIGFPE) /* we are never interested in SIGFPE */ - BlockSignals(True,SIGFPE); + BlockSignals(true,SIGFPE); #endif /* We are no longer interested in USR1 */ - BlockSignals(True, SIGUSR1); + BlockSignals(true, SIGUSR1); #if defined(SIGUSR2) /* We are no longer interested in USR2 */ - BlockSignals(True,SIGUSR2); + BlockSignals(true,SIGUSR2); #endif /* POSIX demands that signals are inherited. If the invoking process has * these signals masked, we will have problems, as we won't recieve them. */ - BlockSignals(False, SIGHUP); - BlockSignals(False, SIGTERM); + BlockSignals(false, SIGHUP); + BlockSignals(false, SIGTERM); CatchSignal(SIGHUP, sig_hup); CatchSignal(SIGTERM, sig_term); |