diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-08-28 02:37:14 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:34:51 -0500 |
commit | c98c6aa5611f26ab591c50fcded1fc55e81a0d07 (patch) | |
tree | 599e3e9efc13a33535b50d40d9035c57a853dc19 /source4/torture/nbt/winsreplication.c | |
parent | e669d0c53d843e664fc5b3d8f3ebcb170ceb8f37 (diff) | |
download | samba-c98c6aa5611f26ab591c50fcded1fc55e81a0d07.tar.gz samba-c98c6aa5611f26ab591c50fcded1fc55e81a0d07.tar.bz2 samba-c98c6aa5611f26ab591c50fcded1fc55e81a0d07.zip |
r9702: r9680@blu: tridge | 2005-08-27 18:45:08 +1000
- fixed ncacn_ip_tcp to use the generic async name resolution methods,
so NBT names now work (as requested several times by abartlet!)
- changed resolve_name() to take an event_context, so it doesn't cause
the whole process to block
- cleaned up the talloc_find_parent_bytype() calls to go via a cleaner
event_context_find() call
(This used to be commit b3d491b210a8b889a25efcb273e70fefbd01b7f7)
Diffstat (limited to 'source4/torture/nbt/winsreplication.c')
-rw-r--r-- | source4/torture/nbt/winsreplication.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/nbt/winsreplication.c b/source4/torture/nbt/winsreplication.c index 4e91deb84a..add34d4fa0 100644 --- a/source4/torture/nbt/winsreplication.c +++ b/source4/torture/nbt/winsreplication.c @@ -127,7 +127,7 @@ BOOL torture_nbt_winsreplication(void) make_nbt_name_server(&name, lp_parm_string(-1, "torture", "host")); /* do an initial name resolution to find its IP */ - status = resolve_name(&name, mem_ctx, &address); + status = resolve_name(&name, mem_ctx, &address, NULL); if (!NT_STATUS_IS_OK(status)) { printf("Failed to resolve %s - %s\n", name.name, nt_errstr(status)); |