summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2006-09-01 14:23:17 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:17:02 -0500
commit5d3fd81018678cfe04a321a96fe520bd3dac32a5 (patch)
tree9cfb1243fcf88772e299e1771ac0c38fcbaeb258
parent0bb1c2da0e4164b448c6b7cc988f59b59225802c (diff)
downloadsamba-5d3fd81018678cfe04a321a96fe520bd3dac32a5.tar.gz
samba-5d3fd81018678cfe04a321a96fe520bd3dac32a5.tar.bz2
samba-5d3fd81018678cfe04a321a96fe520bd3dac32a5.zip
r17993: as metze pointed out, the composite_error() already calls the async
handler, so don't call composite_done() (This used to be commit d70ec77b00e542cc4b8c2bd7d27fe5940623abc5)
-rw-r--r--source4/librpc/rpc/dcerpc_connect.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/source4/librpc/rpc/dcerpc_connect.c b/source4/librpc/rpc/dcerpc_connect.c
index 5ef8216d0b..fba0ae0c02 100644
--- a/source4/librpc/rpc/dcerpc_connect.c
+++ b/source4/librpc/rpc/dcerpc_connect.c
@@ -742,9 +742,7 @@ static void dcerpc_connect_timeout_handler(struct event_context *ev, struct time
struct timeval t, void *private)
{
struct composite_context *c = talloc_get_type(private, struct composite_context);
- DEBUG(0,("DCERPC CONNECT TIMEOUT\n"));
composite_error(c, NT_STATUS_IO_TIMEOUT);
- composite_done(c);
}
/*