mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Volume label doesn't always have the ARCHIVE bit set
svn path=/trunk/; revision=3887
This commit is contained in:
parent
2f3111335f
commit
7140e3951d
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: direntry.c,v 1.11 2002/12/03 01:14:49 hbirr Exp $
|
||||
/* $Id: direntry.c,v 1.12 2002/12/22 11:26:01 gvg Exp $
|
||||
*
|
||||
*
|
||||
* FILE: DirEntry.c
|
||||
|
@ -62,7 +62,7 @@ vfatIsDirEntryLongName (FATDirEntry * pFatDirEntry)
|
|||
BOOL
|
||||
vfatIsDirEntryVolume (FATDirEntry * pFatDirEntry)
|
||||
{
|
||||
return pFatDirEntry->Attrib == 0x28;
|
||||
return 0x08 == (pFatDirEntry->Attrib & 0x1f);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue