summaryrefslogtreecommitdiff
path: root/source3/nmbd/asyncdns.c
diff options
context:
space:
mode:
authorAndreas Schneider <asn@redhat.com>2010-02-19 15:28:11 +0100
committerStefan Metzmacher <metze@samba.org>2010-02-23 12:23:42 +0100
commit38b0e6b4d7375740234fff7834621ce3bb54ada8 (patch)
tree63e7b0133ff68c01c25d62db6ba6c161d5211322 /source3/nmbd/asyncdns.c
parent069350d7e4d9e13ea5451273db51023e972a9373 (diff)
downloadsamba-38b0e6b4d7375740234fff7834621ce3bb54ada8.tar.gz
samba-38b0e6b4d7375740234fff7834621ce3bb54ada8.tar.bz2
samba-38b0e6b4d7375740234fff7834621ce3bb54ada8.zip
s3-nmbd: Remove obsolete signal type cast.
Diffstat (limited to 'source3/nmbd/asyncdns.c')
-rw-r--r--source3/nmbd/asyncdns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nmbd/asyncdns.c b/source3/nmbd/asyncdns.c
index 8b49f510a1..21ac5a0ff4 100644
--- a/source3/nmbd/asyncdns.c
+++ b/source3/nmbd/asyncdns.c
@@ -162,7 +162,7 @@ void start_async_dns(void)
CatchSignal(SIGUSR2, SIG_IGN);
CatchSignal(SIGUSR1, SIG_IGN);
CatchSignal(SIGHUP, SIG_IGN);
- CatchSignal(SIGTERM, SIGNAL_CAST sig_term );
+ CatchSignal(SIGTERM, sig_term);
if (!NT_STATUS_IS_OK(reinit_after_fork(nmbd_messaging_context(),
nmbd_event_context(), true))) {