From 7cbcbee484e2f4c4a2bb6a8c14cef86508f53a69 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 19 Aug 2011 20:53:49 -0700 Subject: Change got_alarm from bool to the correct type of SIG_ATOMIC_T. --- source3/lib/smbldap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source3/lib/smbldap.c b/source3/lib/smbldap.c index dcb99c9a65..ba23281f74 100644 --- a/source3/lib/smbldap.c +++ b/source3/lib/smbldap.c @@ -1345,13 +1345,13 @@ static NTSTATUS smbldap_close(struct smbldap_state *ldap_state) return NT_STATUS_OK; } -static bool got_alarm; +static SIG_ATOMIC_T got_alarm; static void (*old_handler)(int); static void gotalarm_sig(int dummy) { - got_alarm = True; + got_alarm = 1; } static int another_ldap_try(struct smbldap_state *ldap_state, int *rc, @@ -1370,7 +1370,7 @@ static int another_ldap_try(struct smbldap_state *ldap_state, int *rc, } if (*attempts == 0) { - got_alarm = False; + got_alarm = 0; old_handler = CatchSignal(SIGALRM, gotalarm_sig); alarm(endtime - now); -- cgit