Changeset 1311 for trunk/dll/arccnrs.c
- Timestamp:
- Dec 2, 2008, 3:25:50 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/arccnrs.c
r1307 r1311 66 66 30 Nov 08 GKY Add the option of creating a subdirectory from the arcname 67 67 for the extract path to arc container. 68 02 Dec 08 JBS Ticket 284: Changed string indicating no Start/End of list strings. 68 69 69 70 ***********************************************************************/ … … 148 149 #define CON_COLS 6 149 150 #define EXTRA_ARCRECORD_BYTES (sizeof(ARCITEM) - sizeof(MINIRECORDCORE)) 150 151 #define NO_START_OF_ARCHIVER_LIST_STRING "None" 152 #define NO_END_OF_ARCHIVER_LIST_STRING NO_START_OF_ARCHIVER_LIST_STRING 151 153 152 154 #pragma data_seg(DATA1) … … 678 680 gotstart = !info->startlist || // If list has no start marker 679 681 !*info->startlist || 680 (stricmp(info->startlist, "*#* None *#*") == 0); 681 // gotend = !info->endlist || 682 // !*info->endlist || // If list has no end marker 683 // (stricmp(info->endlist, "*#* None *#*") == 0); 682 (stricmp(info->startlist, NO_START_OF_ARCHIVER_LIST_STRING) == 0); 684 683 685 684 while (!feof(fp) && !gotend && !*pStopFlag) { … … 860 859 numarcfiles = 0; // Request close 861 860 else if (!numarcfiles || !gotstart 862 || (!gotend && info->endlist && *info->endlist && (stricmp(info->endlist, "*#* None *#*")))) {861 || (!gotend && info->endlist && *info->endlist && (stricmp(info->endlist, NO_END_OF_ARCHIVER_LIST_STRING)))) { 863 862 // Oops 864 863 ARCDUMP ad;
Note:
See TracChangeset
for help on using the changeset viewer.