Ensure that we are checking case differences

When comparing symbols, look for case differences in values since
netlists are indeed case sensitive
This commit is contained in:
Seth Hillbrand 2025-09-12 23:27:06 -07:00
parent a6decf15b5
commit 89be756d1a

View File

@ -1706,7 +1706,7 @@ int LIB_SYMBOL::Compare( const LIB_SYMBOL& aRhs, int aCompareFlags, REPORTER* aR
if( aCompareFlags & SCH_ITEM::COMPARE_FLAGS::EQUALITY )
{
// Compare field text content
tmp = aField->GetText().CmpNoCase( bField->GetText() );
tmp = aField->GetText().compare( bField->GetText() );
}
if( tmp == 0 )