Author: metze
Date: 2006-07-30 18:59:03 +0000 (Sun, 30 Jul 2006)
New Revision: 17327

WebSVN: 
http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=17327

Log:
when the connect with the ipv6 socket was ok,
we need to inform the caller...

metze
Modified:
   branches/SAMBA_4_0/source/librpc/rpc/dcerpc_sock.c


Changeset:
Modified: branches/SAMBA_4_0/source/librpc/rpc/dcerpc_sock.c
===================================================================
--- branches/SAMBA_4_0/source/librpc/rpc/dcerpc_sock.c  2006-07-30 18:36:17 UTC 
(rev 17326)
+++ branches/SAMBA_4_0/source/librpc/rpc/dcerpc_sock.c  2006-07-30 18:59:03 UTC 
(rev 17327)
@@ -386,7 +386,10 @@
 
        /* receive result of socket open request */
        c->status = dcerpc_pipe_open_socket_recv(ctx);
-       if (NT_STATUS_IS_OK(c->status)) return;
+       if (NT_STATUS_IS_OK(c->status)) {
+               composite_done(c);
+               return;
+       }
 
        talloc_free(s->srvaddr);
 

Reply via email to