From ed50bac88df17e0bc7d879059d7915c9d180d9d6 Mon Sep 17 00:00:00 2001 From: charras Date: Tue, 23 Jun 2009 15:51:00 +0000 Subject: [PATCH] Pcbnew: fixed a recent bug that could be creates errors in rats nest calculations (forgotten rats nets) --- eeschema/plugins/netlist_form_pads-pcb.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eeschema/plugins/netlist_form_pads-pcb.cpp b/eeschema/plugins/netlist_form_pads-pcb.cpp index 900f26e18c..bdab80f6c2 100644 --- a/eeschema/plugins/netlist_form_pads-pcb.cpp +++ b/eeschema/plugins/netlist_form_pads-pcb.cpp @@ -330,7 +330,8 @@ char* GetLine( FILE* File, char* Line, int* LineNum, int SizeLine ) /***************************************************/ 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 */ {