diff options
author | Stefan Metzmacher <metze@samba.org> | 2013-02-18 10:57:54 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-02-19 23:48:03 +0100 |
commit | 01b8b1b88789a1f309a06d8db2983fd540feef9b (patch) | |
tree | fddf83931f7e502ccda92d27304ded4a6d557b88 | |
parent | cf1336e356001c3a83de063c501264fe37bf38c6 (diff) | |
download | samba-01b8b1b88789a1f309a06d8db2983fd540feef9b.tar.gz samba-01b8b1b88789a1f309a06d8db2983fd540feef9b.tar.bz2 samba-01b8b1b88789a1f309a06d8db2983fd540feef9b.zip |
s3:nmbd: s/event_add_timed/tevent_add_timer
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
-rw-r--r-- | source3/nmbd/nmbd_processlogon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nmbd/nmbd_processlogon.c b/source3/nmbd/nmbd_processlogon.c index a37aebec9c..78b6b95f96 100644 --- a/source3/nmbd/nmbd_processlogon.c +++ b/source3/nmbd/nmbd_processlogon.c @@ -529,7 +529,7 @@ logons are not enabled.\n", inet_ntoa(p->ip) )); when = timeval_current_ofs_msec(lp_init_logon_delay()); p->locked = true; - event_add_timed(nmbd_event_context(), + tevent_add_timer(nmbd_event_context(), NULL, when, delayed_init_logon_handler, |