diff options
author | Stefan Metzmacher <metze@samba.org> | 2013-02-18 09:12:26 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-02-19 23:47:49 +0100 |
commit | 5a2aaafee7f040baaec24467f09a4a8b7e95c1d7 (patch) | |
tree | cb7d2eee7b19e33f18a1c05cb00cc0944ca90ba4 /source3/winbindd | |
parent | b538c3188971621dd55011e6050b5af281403bf7 (diff) | |
download | samba-5a2aaafee7f040baaec24467f09a4a8b7e95c1d7.tar.gz samba-5a2aaafee7f040baaec24467f09a4a8b7e95c1d7.tar.bz2 samba-5a2aaafee7f040baaec24467f09a4a8b7e95c1d7.zip |
s3:winbindd: make use of samba_tevent_context_init()
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/winbindd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c index ebaa080bc0..f5da15c259 100644 --- a/source3/winbindd/winbindd.c +++ b/source3/winbindd/winbindd.c @@ -61,7 +61,7 @@ struct tevent_context *winbind_event_context(void) * Note we MUST use the NULL context here, not the autofree context, * to avoid side effects in forked children exiting. */ - ev = tevent_context_init(NULL); + ev = samba_tevent_context_init(NULL); if (ev == NULL) { smb_panic("Could not init winbindd's messaging context.\n"); } |