summaryrefslogtreecommitdiff
path: root/source3/nmbd/nmbd_subnetdb.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/nmbd_subnetdb.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/nmbd_subnetdb.c')
-rw-r--r--source3/nmbd/nmbd_subnetdb.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/nmbd/nmbd_subnetdb.c b/source3/nmbd/nmbd_subnetdb.c
index 703e229052..4fb1425094 100644
--- a/source3/nmbd/nmbd_subnetdb.c
+++ b/source3/nmbd/nmbd_subnetdb.c
@@ -251,7 +251,7 @@ bool create_subnets(void)
* cause us to exit.
*/
- saved_handler = CatchSignal( SIGTERM, SIGNAL_CAST SIG_DFL );
+ saved_handler = CatchSignal(SIGTERM, SIG_DFL);
sleep(5);
load_interfaces();
@@ -260,7 +260,7 @@ bool create_subnets(void)
* We got an interface, restore our normal term handler.
*/
- CatchSignal( SIGTERM, SIGNAL_CAST saved_handler );
+ CatchSignal(SIGTERM, saved_handler);
}
/*
@@ -312,12 +312,12 @@ bool create_subnets(void)
"given interfaces. Is your interface line in "
"smb.conf correct ?\n"));
- saved_handler = CatchSignal( SIGTERM, SIGNAL_CAST SIG_DFL );
+ saved_handler = CatchSignal(SIGTERM, SIG_DFL);
sleep(5);
load_interfaces();
- CatchSignal( SIGTERM, SIGNAL_CAST saved_handler );
+ CatchSignal(SIGTERM, saved_handler);
goto try_interfaces_again;
}