From 6625d9745dd75ce1bebc54bb41b24608289152da Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 21 Sep 2004 07:03:16 +0000 Subject: r2464: fix the build metze (This used to be commit 518bd32ed5e2d2dcf0b8c5743dd71d79f32159a8) --- source4/gtk/common/select.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/gtk') 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; -- cgit