summaryrefslogtreecommitdiffstats
path: root/source/nmbd
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-06-25 02:53:13 +0000
committerAndrew Tridgell <tridge@samba.org>2001-06-25 02:53:13 +0000
commite2ecff419fdc0a0dc7551b33b377dc11061ef2a3 (patch)
tree1a104ddda89594d444b07fd8115686ba862702e6 /source/nmbd
parent72f63f5144ececdef31c659ab645eb71a88943b5 (diff)
downloadsamba-e2ecff419fdc0a0dc7551b33b377dc11061ef2a3.tar.gz
samba-e2ecff419fdc0a0dc7551b33b377dc11061ef2a3.tar.xz
samba-e2ecff419fdc0a0dc7551b33b377dc11061ef2a3.zip
fixed usage of socklen_t and also tidied up SIG_ATOMIC_T, using a typedef instead of a define
Diffstat (limited to 'source/nmbd')
-rw-r--r--source/nmbd/nmbd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/nmbd/nmbd.c b/source/nmbd/nmbd.c
index e176abbe6f1..2fab8f6bc7b 100644
--- a/source/nmbd/nmbd.c
+++ b/source/nmbd/nmbd.c
@@ -83,7 +83,7 @@ static void sig_term(int sig)
/**************************************************************************** **
catch a sighup
**************************************************************************** */
-static VOLATILE SIG_ATOMIC_T reload_after_sighup = False;
+static VOLATILE sig_atomic_t reload_after_sighup = False;
static void sig_hup(int sig)
{