r2464: fix the build
authorStefan Metzmacher <metze@samba.org>
Tue, 21 Sep 2004 07:03:16 +0000 (07:03 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:58:56 +0000 (12:58 -0500)
metze
(This used to be commit 518bd32ed5e2d2dcf0b8c5743dd71d79f32159a8)

source4/gtk/common/select.c

index c5a1cf330e58030c9bbd07806158f858e6468cf6..653256c37eab4feb84b571ba69fd757a5f6f8fd3 100644 (file)
@@ -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;