summaryrefslogtreecommitdiff
path: root/source4/libcli/raw/rawrequest.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-08-14 18:24:33 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:58:00 -0500
commit39686072d5539003f8a2e2679311c5057ee82041 (patch)
tree673450f1d606ff39792d7969e936307beec6c468 /source4/libcli/raw/rawrequest.c
parentc17a1daf63be43e2ce67a978555646f12103d904 (diff)
downloadsamba-39686072d5539003f8a2e2679311c5057ee82041.tar.gz
samba-39686072d5539003f8a2e2679311c5057ee82041.tar.bz2
samba-39686072d5539003f8a2e2679311c5057ee82041.zip
r1824: nicer handling of NBT session replies, and handling of bad packets
with the async SMB code (This used to be commit cef94978f43a8326b6cf1888c15ca8c568ebe9f8)
Diffstat (limited to 'source4/libcli/raw/rawrequest.c')
-rw-r--r--source4/libcli/raw/rawrequest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/libcli/raw/rawrequest.c b/source4/libcli/raw/rawrequest.c
index 70e924a99f..bc87af4297 100644
--- a/source4/libcli/raw/rawrequest.c
+++ b/source4/libcli/raw/rawrequest.c
@@ -252,7 +252,7 @@ static void smbcli_req_grow_allocation(struct smbcli_request *req, uint_t new_si
To cope with this req->out.ptr is supplied. This will be updated to
point at the same offset into the packet as before this call
*/
-static void smbcli_req_grow_data(struct smbcli_request *req, uint_t new_size)
+void smbcli_req_grow_data(struct smbcli_request *req, uint_t new_size)
{
int delta;
@@ -299,7 +299,7 @@ BOOL smbcli_request_receive(struct smbcli_request *req)
event_loop_once(req->transport->event.ctx);
}
- return True;
+ return req->state == SMBCLI_REQUEST_DONE;
}