Author: rharabien Date: Sat Jan 14 12:02:39 2012 New Revision: 54953
URL: http://svn.reactos.org/svn/reactos?rev=54953&view=rev Log: [FASTFAT] - Fix DOSDATE struct declaration. Fixes invalid creation, last modified and accessed times on FAT volumes
Modified: trunk/reactos/drivers/filesystems/fastfat/vfat.h
Modified: trunk/reactos/drivers/filesystems/fastfat/vfat.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfat... ============================================================================== --- trunk/reactos/drivers/filesystems/fastfat/vfat.h [iso-8859-1] (original) +++ trunk/reactos/drivers/filesystems/fastfat/vfat.h [iso-8859-1] Sat Jan 14 12:02:39 2012 @@ -423,7 +423,7 @@ { USHORT Day:5; USHORT Month:4; - USHORT Year:5; + USHORT Year:7; } DOSDATE, *PDOSDATE;