summaryrefslogtreecommitdiff
path: root/source4/libcli/raw/clitransport.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-11-11 01:38:39 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:46:08 -0500
commitb18ed75a75c111f23701295f31ecf3a117488e00 (patch)
tree7a363d252c05b451a53e166ed3c2e9d55abdfd71 /source4/libcli/raw/clitransport.c
parent5358763b41f6720e5e9c31f50e699308e845f52b (diff)
downloadsamba-b18ed75a75c111f23701295f31ecf3a117488e00.tar.gz
samba-b18ed75a75c111f23701295f31ecf3a117488e00.tar.bz2
samba-b18ed75a75c111f23701295f31ecf3a117488e00.zip
r11660: - the libcli/raw/ lib no longer uses the SMBCLI_REQUEST_SEND state, or
the associated send queue - fixed negnowait to not watch for the SMBCLI_REQUEST_SEND state (This used to be commit d19235ede5d352d0b0373d204f4357dddde5946f)
Diffstat (limited to 'source4/libcli/raw/clitransport.c')
-rw-r--r--source4/libcli/raw/clitransport.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/source4/libcli/raw/clitransport.c b/source4/libcli/raw/clitransport.c
index 2580df4aeb..2aebb92790 100644
--- a/source4/libcli/raw/clitransport.c
+++ b/source4/libcli/raw/clitransport.c
@@ -520,9 +520,6 @@ static void smbcli_timeout_handler(struct event_context *ev, struct timed_event
{
struct smbcli_request *req = talloc_get_type(private, struct smbcli_request);
- if (req->state == SMBCLI_REQUEST_SEND) {
- DLIST_REMOVE(req->transport->pending_send, req);
- }
if (req->state == SMBCLI_REQUEST_RECV) {
DLIST_REMOVE(req->transport->pending_recv, req);
}
@@ -540,9 +537,6 @@ static void smbcli_timeout_handler(struct event_context *ev, struct timed_event
static int smbcli_request_destructor(void *ptr)
{
struct smbcli_request *req = talloc_get_type(ptr, struct smbcli_request);
- if (req->state == SMBCLI_REQUEST_SEND) {
- DLIST_REMOVE(req->transport->pending_send, req);
- }
if (req->state == SMBCLI_REQUEST_RECV) {
DLIST_REMOVE(req->transport->pending_recv, req);
}