Fix NameIndexPrimaryKeyCompare

It was actually returning whether the names where not equal.
This commit is contained in:
Ingo Weinhold
2011-11-25 06:19:12 +01:00
parent 502a5e2388
commit dcc6ab5408
@@ -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);
}
};