mirror of
https://github.com/samba-team/samba.git
synced 2025-08-26 01:49:31 +03:00
- fix a bug handling readraw packets that caused the timeout to be 30
milliseconds instead of 30 seconds as was intended. Thanks to Paul
Nelson for finding this bug.
(This used to be commit 78f62c83be
)
This commit is contained in:
@ -101,12 +101,8 @@ typedef unsigned int uint32;
|
||||
#define DEF_CREATE_MASK (0755)
|
||||
#endif
|
||||
|
||||
#ifndef DEFAULT_PIPE_TIMEOUT
|
||||
#define DEFAULT_PIPE_TIMEOUT 10000000 /* Ten seconds */
|
||||
#endif
|
||||
|
||||
/* how long to wait for secondary SMB packets (seconds) */
|
||||
#define SMB_SECONDARY_WAIT 30
|
||||
/* how long to wait for secondary SMB packets (milli-seconds) */
|
||||
#define SMB_SECONDARY_WAIT (60*1000)
|
||||
|
||||
/* debugging code */
|
||||
#ifndef SYSLOG
|
||||
|
@ -2823,7 +2823,7 @@ int reply_trans(char *inbuf,char *outbuf)
|
||||
{
|
||||
int pcnt,poff,dcnt,doff,pdisp,ddisp;
|
||||
|
||||
if (!receive_smb(Client,inbuf, SMB_SECONDARY_WAIT*1000) ||
|
||||
if (!receive_smb(Client,inbuf, SMB_SECONDARY_WAIT) ||
|
||||
CVAL(inbuf, smb_com) != SMBtrans)
|
||||
{
|
||||
DEBUG(2,("Invalid secondary trans2 packet\n"));
|
||||
|
@ -1554,7 +1554,7 @@ int reply_trans2(char *inbuf,char *outbuf,int length,int bufsize)
|
||||
|
||||
while( num_data_sofar < total_data || num_params_sofar < total_params)
|
||||
{
|
||||
if(!receive_smb(Client,inbuf, SMB_SECONDARY_WAIT*1000) ||
|
||||
if(!receive_smb(Client,inbuf, SMB_SECONDARY_WAIT) ||
|
||||
CVAL(inbuf, smb_com) != SMBtranss2)
|
||||
{
|
||||
outsize = set_message(outbuf,0,0,True);
|
||||
|
Reference in New Issue
Block a user