Changeset 1438 for trunk/dll/seeall.c
- Timestamp:
- Jun 28, 2009, 10:47:00 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/seeall.c
r1433 r1438 48 48 08 Mar 09 GKY Additional strings move to PCSZs in init.c 49 49 08 Mar 09 GKY Removed variable aurguments from docopyf and unlinkf (not used) 50 28 Jun 09 GKY Added AddBackslashToPath() to remove repeatative code. 50 51 51 52 ***********************************************************************/ … … 647 648 GetPString(IDS_MOVEDTEXT) : GetPString(IDS_COPIEDTEXT); 648 649 if (*path) { 649 strcpy(newname, path); 650 if (newname[strlen(newname) - 1] != '\\') 651 strcat(newname, "\\"); 650 strcpy(newname, path); 651 AddBackslashToPath(newname); 652 //if (newname[strlen(newname) - 1] != '\\') 653 // strcat(newname, "\\"); 652 654 if (plen) 653 655 p = list[x] + plen; … … 1058 1060 (*list[x] && 1059 1061 list[x][strlen(list[x]) - 1] != 1060 '\\') ? "\\": NullStr);1062 '\\') ? PCSZ_BACKSLASH : NullStr); 1061 1063 DosError(FERR_DISABLEHARDERR); 1062 1064 if (!error)
Note:
See TracChangeset
for help on using the changeset viewer.