X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-workers-bounces using -f From: Martin Stromberg Message-Id: <200201091347.OAA11490@lws256.lu.erisoft.se> Subject: Re: Proposed lstat.c patch for Win2000/XP device bit fix To: djgpp-workers AT delorie DOT com Date: Wed, 9 Jan 2002 14:47:18 +0100 (MET) In-Reply-To: <10201090418.AA14643@clio.rice.edu> from "Charles Sandmann" at Jan 08, 2002 10:18:46 PM X-Mailer: ELM [version 2.5 PL3] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk Charles said: > *** lstat.c_ Tue Dec 11 21:28:06 2001 > --- lstat.c Tue Jan 8 22:09:36 2002 > *************** stat_assist(const char *path, struct sta > *** 600,605 **** > --- 600,614 ---- > if ( !(ff_blk.ff_attrib & 0x07) ) /* no R, H or S bits set */ > statbuf->st_mode |= WRITE_ACCESS; > > + /* Windows 2000 and XP - devices don't set attributes correctly */ > + if( (_djstat_fail_bits & _STFAIL_TRUENAME) && !ff_blk.ff_fsize && > + !ff_blk.ff_ftime && (ff_blk.ff_fdate == 33) && > + !ff_blk.lfn_ctime && (ff_blk.lfn_cdate == 33) && > + !ff_blk.lfn_atime && (ff_blk.lfn_adate == 33) && > + !strcmp(ff_blk.lfn_magic,"LFN32") && Isn't this code always included in the image. IIRC, the recommendation is to use ff_blk.lfn_magic[0] == 'F' && ff_blk.lfn_magic[0] == 'A' && ... if so. Right, MartinS