Sophie

Sophie

distrib > Mageia > 5 > x86_64 > by-pkgid > 3baf750c6476f9d7fee129618b18ee89 > files > 1

gnubg-1.03.001-4.mga5.src.rpm

--- import.c	2014/07/20 21:01:48	1.199
+++ import.c	2014/08/21 21:25:21	1.200
@@ -16,7 +16,7 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  *
- * $Id: import.c,v 1.199 2014/07/20 21:01:48 plm Exp $
+ * $Id: import.c,v 1.200 2014/08/21 21:25:21 plm Exp $
  */
 
 #include "config.h"
@@ -934,7 +934,7 @@
     IniStatcontext(&pmr->g.sc);
     AddMoveRecord(pmr);
 
-    while ((szLine = GetMatLine(fp)) && strncmp(g_strchug(szLine), START_STRING, START_STRING_LEN)) {
+    while ((szLine = GetMatLine(fp)) && !g_strrstr(szLine, START_STRING)) {
         pchRight = pchLeft = NULL;
 
         if ((pch = strpbrk(szLine, "\n\r")) != 0)
@@ -1134,7 +1134,7 @@
 
     szLine = GetMatLine(fp);
     while (szLine) {
-        if (!strncmp(g_strchug(szLine), START_STRING, START_STRING_LEN)) {
+        if (g_strrstr(szLine, START_STRING)) {
             game = atoi(g_strchug(szLine) + START_STRING_LEN);
             if (!game)
                 outputf(_("WARNING! Unrecognized line in mat file: '%s'\n"), szLine);