diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-05-06 02:35:33 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-05-06 02:35:33 +0000 |
commit | ecbd2b5d1e891472aab2d1ebd2cbadef0db86060 (patch) | |
tree | 6eb6bc31ada440f36888c23b6d52b53d20971060 /source3/lib/module.c | |
parent | 06551c644c75ab2aa14a3cc3c4afbcbb08369133 (diff) | |
download | samba-ecbd2b5d1e891472aab2d1ebd2cbadef0db86060.tar.gz |
Remove unused variables
(This used to be commit 2f631769f836baeec669456f786ecb38c81d9a23)
Diffstat (limited to 'source3/lib/module.c')
-rw-r--r-- | source3/lib/module.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/source3/lib/module.c b/source3/lib/module.c index c47ca96dcc5..811efae3114 100644 --- a/source3/lib/module.c +++ b/source3/lib/module.c @@ -162,8 +162,6 @@ void module_path_get_name(const char *path, pstring name) static smb_idle_event_struct *smb_idle_event_list = NULL; NTSTATUS smb_register_idle_event(smb_idle_event_struct *idle_event) { - smb_idle_event_struct *tmp_event = smb_idle_event_list; - if (!idle_event) { return NT_STATUS_INVALID_PARAMETER; } @@ -220,8 +218,6 @@ void smb_run_idle_events(time_t now) static smb_exit_event_struct *smb_exit_event_list = NULL; NTSTATUS smb_register_exit_event(smb_exit_event_struct *exit_event) { - smb_exit_event_struct *tmp_event = smb_exit_event_list; - if (!exit_event) { return NT_STATUS_INVALID_PARAMETER; } |