Pcbnew: fixed a recent bug that could be creates errors in rats nest calculations (forgotten rats nets)

This commit is contained in:
charras 2009-06-23 15:51:00 +00:00
parent 6791556e3a
commit ed50bac88d
1 changed files with 2 additions and 1 deletions

View File

@ -330,7 +330,8 @@ char* GetLine( FILE* File, char* Line, int* LineNum, int SizeLine )
/***************************************************/ /***************************************************/
int AreStringsEqual( const char * src, const char * ref ) int AreStringsEqual( const char * src, const char * ref )
/***************************************************/ /***************************************************/
/* Compare 2 chains, and return 0 if equal or 1 if different /* Compare 2 strings (case insensitive),
* and return 1 (true) if equal or 0 (false) if different
* stricmp does the same job, but does not exist under all systems * stricmp does the same job, but does not exist under all systems
*/ */
{ {