summaryrefslogtreecommitdiff
path: root/source4/smbd
diff options
context:
space:
mode:
authorAndreas Schneider <asn@redhat.com>2010-02-19 12:49:08 +0100
committerStefan Metzmacher <metze@samba.org>2010-02-23 12:23:44 +0100
commit95a0ab5f1118727325c2bede31edd53ece6afb85 (patch)
tree677e9bdd95bfcd8c4a0010b6eed0a79e4cc3d9a9 /source4/smbd
parentf33b69753d7939a08003bfe4763baafe8b4aa96b (diff)
downloadsamba-95a0ab5f1118727325c2bede31edd53ece6afb85.tar.gz
samba-95a0ab5f1118727325c2bede31edd53ece6afb85.tar.bz2
samba-95a0ab5f1118727325c2bede31edd53ece6afb85.zip
s4-smbd: Remove obsolete singal type cast from the thread process model.
Diffstat (limited to 'source4/smbd')
-rw-r--r--source4/smbd/process_thread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/smbd/process_thread.c b/source4/smbd/process_thread.c
index 5be6374c14..e17769d34e 100644
--- a/source4/smbd/process_thread.c
+++ b/source4/smbd/process_thread.c
@@ -459,13 +459,13 @@ setup our recursive fault handlers
static void thread_fault_setup(void)
{
#ifdef SIGSEGV
- CatchSignal(SIGSEGV,SIGNAL_CAST thread_sig_fault);
+ CatchSignal(SIGSEGV, thread_sig_fault);
#endif
#ifdef SIGBUS
- CatchSignal(SIGBUS,SIGNAL_CAST thread_sig_fault);
+ CatchSignal(SIGBUS, thread_sig_fault);
#endif
#ifdef SIGABRT
- CatchSignal(SIGABRT,SIGNAL_CAST thread_sig_fault);
+ CatchSignal(SIGABRT, thread_sig_fault);
#endif
}