diff options
author | Andreas Schneider <asn@redhat.com> | 2010-02-19 16:14:47 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-02-23 12:23:42 +0100 |
commit | b9cf55cfeae854cd90cd4bd7b55b7313f34af828 (patch) | |
tree | 452a36cd05f176ae0fbd9bbc58e857996a841235 /source3 | |
parent | d9f31fea6a31acb7fd02166a69ec575de4acec1b (diff) | |
download | samba-b9cf55cfeae854cd90cd4bd7b55b7313f34af828.tar.gz samba-b9cf55cfeae854cd90cd4bd7b55b7313f34af828.tar.xz samba-b9cf55cfeae854cd90cd4bd7b55b7313f34af828.zip |
s3-passdb: Remove obsolete signal type cast.
Diffstat (limited to 'source3')
-rw-r--r-- | source3/passdb/pdb_smbpasswd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/passdb/pdb_smbpasswd.c b/source3/passdb/pdb_smbpasswd.c index d584d0ea791..a327da4cacc 100644 --- a/source3/passdb/pdb_smbpasswd.c +++ b/source3/passdb/pdb_smbpasswd.c @@ -69,7 +69,7 @@ static SIG_ATOMIC_T gotalarm; Signal function to tell us we timed out. ****************************************************************/ -static void gotalarm_sig(void) +static void gotalarm_sig(int signum) { gotalarm = 1; } @@ -86,7 +86,7 @@ static bool do_file_lock(int fd, int waitsecs, int type) void (*oldsig_handler)(int); gotalarm = 0; - oldsig_handler = CatchSignal(SIGALRM, SIGNAL_CAST gotalarm_sig); + oldsig_handler = CatchSignal(SIGALRM, gotalarm_sig); lock.l_type = type; lock.l_whence = SEEK_SET; @@ -98,7 +98,7 @@ static bool do_file_lock(int fd, int waitsecs, int type) /* Note we must *NOT* use sys_fcntl here ! JRA */ ret = fcntl(fd, SMB_F_SETLKW, &lock); alarm(0); - CatchSignal(SIGALRM, SIGNAL_CAST oldsig_handler); + CatchSignal(SIGALRM, oldsig_handler); if (gotalarm && ret == -1) { DEBUG(0, ("do_file_lock: failed to %s file.\n", |