Fix NameIndexPrimaryKeyCompare
It was actually returning whether the names where not equal.
This commit is contained in:
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);
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user