diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-03-22 01:35:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:11:10 -0500 |
commit | 455be8fb8271bd97058390dca5a76db81ea2928b (patch) | |
tree | 7e4f4856e5d43f07cb2a216a8ed0fc988649d1a6 /source4/gtk/tools/gwsam.c | |
parent | b7676c4b48f2d39446b853bc87c0b288ac368e36 (diff) | |
download | samba-455be8fb8271bd97058390dca5a76db81ea2928b.tar.gz samba-455be8fb8271bd97058390dca5a76db81ea2928b.tar.xz samba-455be8fb8271bd97058390dca5a76db81ea2928b.zip |
r5932: Use cli_credentials somewhat more in the Gtk+ code
Support ncacn_spx in DCE/RPC bindings.
(This used to be commit a0233a3a9a83176ae46873d3a25ed601758a1511)
Diffstat (limited to 'source4/gtk/tools/gwsam.c')
-rw-r--r-- | source4/gtk/tools/gwsam.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/gtk/tools/gwsam.c b/source4/gtk/tools/gwsam.c index 0d435b278c..75a4b532f2 100644 --- a/source4/gtk/tools/gwsam.c +++ b/source4/gtk/tools/gwsam.c @@ -57,7 +57,7 @@ void update_userlist(void) status = dcerpc_samr_EnumDomainUsers(sam_pipe, mem_ctx, &r); if (!NT_STATUS_IS_OK(status)) { - gtk_show_ntstatus(mainwin, status); + gtk_show_ntstatus(mainwin, "While enumerating domain users", status); talloc_free(mem_ctx); return; } @@ -135,7 +135,7 @@ static void connect_sam(void) ); if(!NT_STATUS_IS_OK(status)) { - gtk_show_ntstatus(mainwin, status); + gtk_show_ntstatus(mainwin, "While connecting to SAMR interface", status); sam_pipe = NULL; gtk_widget_destroy(GTK_WIDGET(d)); talloc_free(mem_ctx); @@ -148,7 +148,7 @@ static void connect_sam(void) status = dcerpc_samr_Connect(sam_pipe, mem_ctx, &r); if (!NT_STATUS_IS_OK(status)) { - gtk_show_ntstatus(mainwin, status); + gtk_show_ntstatus(mainwin, "While running connect on SAMR", status); sam_pipe = NULL; gtk_widget_destroy(GTK_WIDGET(d)); talloc_free(mem_ctx); |