summaryrefslogtreecommitdiff
path: root/source4/gtk
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-09-21 07:03:16 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:58:56 -0500
commit6625d9745dd75ce1bebc54bb41b24608289152da (patch)
tree5e5eb4030e7d7c17783c64fa3e7f4a80b2f474aa /source4/gtk
parented4d10fb43ea462500dbaf690b8e04d910bfac4e (diff)
downloadsamba-6625d9745dd75ce1bebc54bb41b24608289152da.tar.gz
samba-6625d9745dd75ce1bebc54bb41b24608289152da.tar.bz2
samba-6625d9745dd75ce1bebc54bb41b24608289152da.zip
r2464: fix the build
metze (This used to be commit 518bd32ed5e2d2dcf0b8c5743dd71d79f32159a8)
Diffstat (limited to 'source4/gtk')
-rw-r--r--source4/gtk/common/select.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/gtk/common/select.c b/source4/gtk/common/select.c
index c5a1cf330e..653256c37e 100644
--- a/source4/gtk/common/select.c
+++ b/source4/gtk/common/select.c
@@ -143,7 +143,7 @@ GtkWidget *gtk_select_domain_dialog_new (struct dcerpc_pipe *sam_pipe)
cr.in.system_name = 0;
cr.in.access_mask = SEC_RIGHTS_MAXIMUM_ALLOWED;
- cr.out.handle = &handle;
+ cr.out.connect_handle = &handle;
status = dcerpc_samr_Connect(sam_pipe, mem_ctx, &cr);
if (!NT_STATUS_IS_OK(status)) {
@@ -152,7 +152,7 @@ GtkWidget *gtk_select_domain_dialog_new (struct dcerpc_pipe *sam_pipe)
return GTK_WIDGET(d);
}
- r.in.handle = &handle;
+ r.in.connect_handle = &handle;
r.in.resume_handle = &resume_handle;
r.in.buf_size = (uint32_t)-1;
r.out.resume_handle = &resume_handle;