Fix NameIndexPrimaryKeyCompare

It was actually returning whether the names where not equal.
This commit is contained in:
Ingo Weinhold
2011-07-17 16:55:04 +02:00
parent 9811f22cab
commit 747578cd93
@@ -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);
}
};