Ignore:
Timestamp:
01/12/2008 01:31:51 (3 years ago)
Author:
chris
Message:

Fix the use of an unreasonably short type as the temporary storage
for inode numbers on Windows, resulting in all inode numbers being
coerced into 216 space and many duplicates on systems with large
numbers of files being backed up, possibly resulting in store
corruption due to unwanted file rename operations.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • box/trunk/lib/win32/emu.h

    r2389 r2395  
    2626#ifdef __MINGW32__ 
    2727        typedef uint32_t u_int32_t; 
     28        typedef uint64_t _ino_t; 
     29        typedef _ino_t ino_t; 
     30        #define _INO_T_ 
    2831#else 
    2932        typedef unsigned int mode_t; 
Note: See TracChangeset for help on using the changeset viewer.