comparison src/fileio.c @ 567:afd8e69dba19

updated for version 7.0161
author vimboss
date Mon, 28 Nov 2005 22:58:23 +0000
parents 862863033fdd
children 27d1ec742f17
comparison
equal deleted inserted replaced
566:bc4ba1b9a761 567:afd8e69dba19
3148 || st.st_uid != st_old.st_uid 3148 || st.st_uid != st_old.st_uid
3149 || st.st_gid != st_old.st_gid 3149 || st.st_gid != st_old.st_gid
3150 || st.st_mode != perm) 3150 || st.st_mode != perm)
3151 backup_copy = TRUE; 3151 backup_copy = TRUE;
3152 # endif 3152 # endif
3153 /* Close the file before removing it, on MS-Windows we
3154 * can't delete an open file. */
3155 close(fd);
3153 mch_remove(IObuff); 3156 mch_remove(IObuff);
3154 close(fd);
3155 } 3157 }
3156 } 3158 }
3157 } 3159 }
3158 3160
3159 # ifdef UNIX 3161 # ifdef UNIX