diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-04-17 01:37:02 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-04-17 01:37:02 +0200 |
commit | a145d21de63a5cb2d347c1281ed437cab6a95569 (patch) | |
tree | 7647a130103bbc24d7762f82446333365d3ac778 /source4/torture/nbt | |
parent | 9de0594175f9ccd9c130a332126f9247758c43ad (diff) | |
download | samba-a145d21de63a5cb2d347c1281ed437cab6a95569.tar.gz samba-a145d21de63a5cb2d347c1281ed437cab6a95569.tar.bz2 samba-a145d21de63a5cb2d347c1281ed437cab6a95569.zip |
Avoid using event_context_find where possible.
(This used to be commit 04420b4689bc223202d5bba871e3eea16301e8e9)
Diffstat (limited to 'source4/torture/nbt')
-rw-r--r-- | source4/torture/nbt/dgram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/nbt/dgram.c b/source4/torture/nbt/dgram.c index 18950e9dcb..a4c8be888c 100644 --- a/source4/torture/nbt/dgram.c +++ b/source4/torture/nbt/dgram.c @@ -283,7 +283,7 @@ static bool nbt_test_ntlogon(struct torture_context *tctx) /* do an initial name resolution to find its IP */ torture_assert_ntstatus_ok(tctx, - resolve_name(lp_resolve_context(tctx->lp_ctx), &name, tctx, &address, event_context_find(tctx)), + resolve_name(lp_resolve_context(tctx->lp_ctx), &name, tctx, &address, tctx->ev), talloc_asprintf(tctx, "Failed to resolve %s", name.name)); load_interfaces(tctx, lp_interfaces(tctx->lp_ctx), &ifaces); |