summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2013-02-18 09:12:26 +0100
committerMichael Adam <obnox@samba.org>2013-02-19 23:47:49 +0100
commit5a2aaafee7f040baaec24467f09a4a8b7e95c1d7 (patch)
treecb7d2eee7b19e33f18a1c05cb00cc0944ca90ba4 /source3/winbindd/winbindd.c
parentb538c3188971621dd55011e6050b5af281403bf7 (diff)
downloadsamba-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/winbindd.c')
-rw-r--r--source3/winbindd/winbindd.c2
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");
}