IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 16512


Ignore:
Timestamp:
Feb 15, 2008, 10:07:13 AM (18 years ago)
Author:
eugene
Message:

copyOK was never set to true

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/concepts/pmConcepts.c

    r16481 r16512  
    10551055    while ((item = psMetadataGetAndIncrement(iter))) {
    10561056        const char *name = item->name;  // Name of concept
    1057         bool copyOK = false;            // OK to copy
     1057        bool copyOK = true;            // OK to copy
    10581058        for (int i = 0; dontCopyConcepts[i] && copyOK; i++) {
    1059             if (strcmp(name, dontCopyConcepts[i]) == 0) {
     1059            if (!strcmp(name, dontCopyConcepts[i])) {
    10601060                copyOK = false;
    10611061            }
Note: See TracChangeset for help on using the changeset viewer.