comparison src/fileio.c @ 1438:c7654c4db8fd v7.1.153

updated for version 7.1-153
author vimboss
date Thu, 08 Nov 2007 19:49:02 +0000
parents d065616e0836
children e980e93d2ac2
comparison
equal deleted inserted replaced
1437:8b2e9257cc11 1438:c7654c4db8fd
3207 3207
3208 /* 3208 /*
3209 * Get information about original file (if there is one). 3209 * Get information about original file (if there is one).
3210 */ 3210 */
3211 #if defined(UNIX) && !defined(ARCHIE) 3211 #if defined(UNIX) && !defined(ARCHIE)
3212 st_old.st_dev = st_old.st_ino = 0; 3212 st_old.st_dev = 0;
3213 st_old.st_ino = 0;
3213 perm = -1; 3214 perm = -1;
3214 if (mch_stat((char *)fname, &st_old) < 0) 3215 if (mch_stat((char *)fname, &st_old) < 0)
3215 newfile = TRUE; 3216 newfile = TRUE;
3216 else 3217 else
3217 { 3218 {