summaryrefslogtreecommitdiff
path: root/source4/nmbd/nmbd.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-03-28 01:57:28 +0000
committerAndrew Tridgell <tridge@samba.org>2004-03-28 01:57:28 +0000
commit9403f3dc7e977d53efe1439ec20461bbc4935fe5 (patch)
treefbfa6cb26b98ffcc7bae342b6f886d37a68b7bc2 /source4/nmbd/nmbd.c
parent3744324dbd29ca3c732a3d82fab1c0ee94598eaf (diff)
downloadsamba-9403f3dc7e977d53efe1439ec20461bbc4935fe5.tar.gz
samba-9403f3dc7e977d53efe1439ec20461bbc4935fe5.tar.bz2
samba-9403f3dc7e977d53efe1439ec20461bbc4935fe5.zip
switch from SIG_ATOMIC_T to sig_atomic_t
(This used to be commit b881b72cb9cb5a4a8ad27b621e8cbe9dcfa7ba7f)
Diffstat (limited to 'source4/nmbd/nmbd.c')
-rw-r--r--source4/nmbd/nmbd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/nmbd/nmbd.c b/source4/nmbd/nmbd.c
index 166e84bfbe..0fa3525666 100644
--- a/source4/nmbd/nmbd.c
+++ b/source4/nmbd/nmbd.c
@@ -81,7 +81,7 @@ static void nmbd_terminate(int msg_type, pid_t src, void *buf, size_t len)
Catch a SIGTERM signal.
**************************************************************************** */
-static SIG_ATOMIC_T got_sig_term;
+static sig_atomic_t got_sig_term;
static void sig_term(int sig)
{
@@ -93,7 +93,7 @@ static void sig_term(int sig)
Catch a SIGHUP signal.
**************************************************************************** */
-static SIG_ATOMIC_T reload_after_sighup;
+static sig_atomic_t reload_after_sighup;
static void sig_hup(int sig)
{