comparison src/w32.c @ 103868:b2b6dc6a2417

(stat): Fix last change.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 11 Jul 2009 20:31:27 +0000
parents fe78cff95301
children 68dd71358159
comparison
equal deleted inserted replaced
103867:c070113047fe 103868:b2b6dc6a2417
3379 FindClose (fh); 3379 FindClose (fh);
3380 } 3380 }
3381 } 3381 }
3382 3382
3383 if (!(NILP (Vw32_get_true_file_attributes) 3383 if (!(NILP (Vw32_get_true_file_attributes)
3384 || (EQ (Vw32_get_true_file_attributes, Qlocal) && !is_slow_fs (name))) 3384 || (EQ (Vw32_get_true_file_attributes, Qlocal) && is_slow_fs (name)))
3385 /* No access rights required to get info. */ 3385 /* No access rights required to get info. */
3386 && (fh = CreateFile (name, 0, 0, NULL, OPEN_EXISTING, 3386 && (fh = CreateFile (name, 0, 0, NULL, OPEN_EXISTING,
3387 FILE_FLAG_BACKUP_SEMANTICS, NULL)) 3387 FILE_FLAG_BACKUP_SEMANTICS, NULL))
3388 != INVALID_HANDLE_VALUE) 3388 != INVALID_HANDLE_VALUE)
3389 { 3389 {