From 0b93587b7e3d43b32835bf0b76fe4eebef1d4036 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Fri, 6 Jul 2012 00:01:41 +0200 Subject: s4-libnet: Skip calling lsarpc functions over a wrong pipe. --- source4/libnet/libnet_rpc.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'source4/libnet') 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; -- cgit