Explorar el Código

* Changed .cfg parser to not bail out on '<' '>' now

svn: 2340
Bryan Drewery hace 21 años
padre
commit
2f5d6c67e8
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/binary.c

+ 1 - 1
src/binary.c

@@ -224,7 +224,7 @@ readcfg(const char *cfgfile)
       if (strchr(buffer, '<') || strchr(buffer, '>')) {
         printf(" Failed\n");
         printf("%s:%d: error: Look at your configuration file again...\n", cfgfile, line);
-        exit(1);
+//        exit(1);
       }
       p = strchr(buffer, ' ');
       while (p && (strchr(LISTSEPERATORS, p[0])))