Fix NameIndexPrimaryKeyCompare

It was actually returning whether the names where not equal.
This commit is contained in:
Ingo Weinhold 2011-07-07 08:01:44 +02:00
parent 9811f22cab
commit 747578cd93

View File

@ -67,7 +67,7 @@ public:
{
if (a.entry != NULL && a.entry == b.entry)
return 0;
return strcmp(a.name, b.name) != 0;
return strcmp(a.name, b.name);
}
};