From: Andreas Schneider Date: Thu, 5 Jul 2012 22:01:41 +0000 (+0200) Subject: s4-libnet: Skip calling lsarpc functions over a wrong pipe. X-Git-Url: http://git.samba.org/?p=mat%2Fsamba.git;a=commitdiff_plain;h=0b93587b7e3d43b32835bf0b76fe4eebef1d4036 s4-libnet: Skip calling lsarpc functions over a wrong pipe. --- diff --git a/source4/libnet/libnet_rpc.c b/source4/libnet/libnet_rpc.c index 8aacfc398a..349e1f8664 100644 --- a/source4/libnet/libnet_rpc.c +++ b/source4/libnet/libnet_rpc.c @@ -573,6 +573,15 @@ static void continue_dci_rpc_connect(struct composite_context *ctx) s->attr.sec_qos = &s->qos; + if (s->lsa_pipe->binding->transport == NCACN_IP_TCP) { + /* + * Skip to creating the actual connection. We can't open a + * policy handle over tcpip. + */ + continue_epm_map_binding_send(c); + return; + } + s->lsa_open_policy.in.attr = &s->attr; s->lsa_open_policy.in.system_name = talloc_asprintf(c, "\\"); if (composite_nomem(s->lsa_open_policy.in.system_name, c)) return;