From: Jeremy Allison Date: Thu, 14 Jan 2010 23:50:02 +0000 (-0800) Subject: Fix bug #7036 - net rpc getsid fails in hardened windows environments. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a92d42cf8ae37fe579061f762af601dc49ed71af;p=thirdparty%2Fsamba.git Fix bug #7036 - net rpc getsid fails in hardened windows environments. Fix suggested by Dave.Daugherty@Centrify.com. --- diff --git a/source/utils/net_rpc.c b/source/utils/net_rpc.c index 826b6d9ac87..b73f98fc6e7 100644 --- a/source/utils/net_rpc.c +++ b/source/utils/net_rpc.c @@ -587,6 +587,12 @@ static NTSTATUS rpc_getsid_internals(struct net_context *c, int net_rpc_getsid(struct net_context *c, int argc, const char **argv) { + int conn_flags = NET_FLAGS_PDC; + + if (!c->opt_user_specified) { + conn_flags |= NET_FLAGS_ANONYMOUS; + } + if (c->display_usage) { d_printf("Usage:\n" "net rpc getsid\n" @@ -595,7 +601,7 @@ int net_rpc_getsid(struct net_context *c, int argc, const char **argv) } return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, - NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC, + conn_flags, rpc_getsid_internals, argc, argv); }