1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

r8655: Still trying to fix #2889. We don't need the DPTR_MASK after

all, now thinking it might be to do with flags2...
Jeremy.
This commit is contained in:
Jeremy Allison 2005-07-20 18:21:38 +00:00 committed by Gerald (Jerry) Carter
parent cd961e50a3
commit a3ceabf7c6

View File

@ -641,8 +641,6 @@ BOOL dptr_SearchDir(struct dptr_struct *dptr, const char *name, long *poffset, S
Fill the 5 byte server reserved dptr field.
****************************************************************************/
#define DPTR_MASK ((uint32)(((uint32)1)<<31))
BOOL dptr_fill(char *buf1,unsigned int key)
{
unsigned char *buf = (unsigned char *)buf1;
@ -655,13 +653,8 @@ BOOL dptr_fill(char *buf1,unsigned int key)
offset = (uint32)TellDir(dptr->dir_hnd);
DEBUG(6,("fill on key %u dirptr 0x%lx now at %d\n",key,
(long)dptr->dir_hnd,(int)offset));
if (offset != (uint32)-1 && (offset & DPTR_MASK)) {
DEBUG(0,("dptr_fill: Error - offset 0x%x has bit 32 set. Can't use in server state.\n",
(unsigned int)offset ));
return False;
}
buf[0] = key;
SIVAL(buf,1,offset | DPTR_MASK);
SIVAL(buf,1,offset);
return(True);
}
@ -685,7 +678,7 @@ struct dptr_struct *dptr_fetch(char *buf,int *num)
if (offset == (uint32)-1) {
seekoff = -1;
} else {
seekoff = (long)(offset & ~DPTR_MASK);
seekoff = (long)offset;
}
SeekDir(dptr->dir_hnd,seekoff);
DEBUG(3,("fetching dirptr %d for path %s at offset %d\n",