summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2007-08-01 01:22:53 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 15:01:26 -0500
commit07b15cd9fd09adbda5acee00f5a32766e34c6654 (patch)
treeca5d91e8e039d5c94b7a6f1995f7def007e2fa91
parentfa16e28424946d7bcea948c977208921e39b5c62 (diff)
downloadsamba-07b15cd9fd09adbda5acee00f5a32766e34c6654.tar.gz
samba-07b15cd9fd09adbda5acee00f5a32766e34c6654.tar.bz2
samba-07b15cd9fd09adbda5acee00f5a32766e34c6654.zip
r24111: Untested code is broken code, untested code is broken code...
Apologies for my previous commit, which should never have been commited untested. Andrew Bartlett (This used to be commit ec69f41d093df598cb3969be0efdd6b8b804d423)
-rw-r--r--source4/winbind/wb_name2domain.c2
-rw-r--r--source4/winbind/wb_sid2domain.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source4/winbind/wb_name2domain.c b/source4/winbind/wb_name2domain.c
index b31ccb1212..712722c71a 100644
--- a/source4/winbind/wb_name2domain.c
+++ b/source4/winbind/wb_name2domain.c
@@ -59,7 +59,7 @@ struct composite_context *wb_name2domain_send(TALLOC_CTX *mem_ctx,
ctx = wb_cmd_lookupname_send(state, service, user_dom, user_name);
if (ctx == NULL) goto failed;
- composite_continue(result, ctx, name2domain_recv_sid, ctx->async.private_data);
+ composite_continue(result, ctx, name2domain_recv_sid, state);
return result;
failed:
diff --git a/source4/winbind/wb_sid2domain.c b/source4/winbind/wb_sid2domain.c
index de535cdcf9..257a1afdc0 100644
--- a/source4/winbind/wb_sid2domain.c
+++ b/source4/winbind/wb_sid2domain.c
@@ -94,7 +94,7 @@ struct composite_context *wb_sid2domain_send(TALLOC_CTX *mem_ctx,
ctx = wb_cmd_lookupsid_send(state, service, state->sid);
if (ctx == NULL) goto failed;
- composite_continue(result, ctx, sid2domain_recv_name, ctx->async.private_data);
+ composite_continue(result, ctx, sid2domain_recv_name, state);
return result;