diff options
author | Tim Potter <tpot@samba.org> | 2002-06-20 00:45:34 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-06-20 00:45:34 +0000 |
commit | df1893d53238927fbcf73a687f921d21abca5ded (patch) | |
tree | 6a059d3aa36e3dffc04bf4fef491f36ab028822e /source3/lib | |
parent | 48aeecf8204d39235ee9e16bdeabc5df74c5ba01 (diff) | |
download | samba-df1893d53238927fbcf73a687f921d21abca5ded.tar.gz samba-df1893d53238927fbcf73a687f921d21abca5ded.tar.bz2 samba-df1893d53238927fbcf73a687f921d21abca5ded.zip |
Fixed compiler warning.
(This used to be commit c29cef7f3408714d4e6e18906760d74016c6748f)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/messages.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/messages.c b/source3/lib/messages.c index b5e89a6aaa..e6d2de4a58 100644 --- a/source3/lib/messages.c +++ b/source3/lib/messages.c @@ -475,7 +475,7 @@ BOOL message_named_mutex(char *name, unsigned int timeout) { TDB_DATA key; int ret; - void (*oldsig_handler)(int); + void (*oldsig_handler)(int) = NULL; if (!message_init()) return False; |