From 96983a13bac8276590024b37149b7bf3e80477dd Mon Sep 17 00:00:00 2001 From: Luke Leighton Date: Tue, 9 Feb 1999 21:42:39 +0000 Subject: when multiple independent large rpc calls come in on the same pipe, prev_pdu_file_offset was not being re-initialised to zero. (This used to be commit fcaa1214412f5a417a648d4da5c4332f75f59f57) --- source3/smbd/ipc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3/smbd') diff --git a/source3/smbd/ipc.c b/source3/smbd/ipc.c index 41892504ad..31ae8e6fc0 100644 --- a/source3/smbd/ipc.c +++ b/source3/smbd/ipc.c @@ -3236,7 +3236,8 @@ static int api_fd_reply(connection_struct *conn,uint16 vuid,char *outbuf, subcommand, p->name, pnum)); /* record maximum data length that can be transmitted in an SMBtrans */ - p->file_offset = mdrcnt; + p->file_offset = mdrcnt; + p->prev_pdu_file_offset = 0; DEBUG(10,("api_fd_reply: p:%p file_offset: %d\n", p, p->file_offset)); -- cgit