Changeset 1544 for trunk/dll/rename.c
- Timestamp:
- Sep 30, 2010, 3:00:59 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/rename.c
r1498 r1544 44 44 #include "strips.h" // bstrip 45 45 #include "info.h" // driveflags 46 #include "wrappers.h" // xfopen 47 48 static PSZ pszSrcFile = __FILE__; 46 49 47 50 MRESULT EXPENTRY RenameProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2) … … 161 164 GetPString(IDS_FILETEXT)); 162 165 { 163 FILE *fp = NULL; 166 FILE *fp = NULL; 167 CHAR *modeab = "ab"; 164 168 if (~sourceexists & 2) 165 fp = fopen(mv->source, "ab");169 fp = xfopen(mv->source, modeab, pszSrcFile, __LINE__, TRUE); 166 170 if ((!fp && ~sourceexists & 2) || !sourceexists) 167 171 strcpy(s, GetPString(IDS_CANTACCESSSOURCETEXT));
Note:
See TracChangeset
for help on using the changeset viewer.