Ver Fonte

Missed the strsep to my_strsep change in check_nrpe.c

John C. Frickson há 9 anos atrás
pai
commit
9a909d0679
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      src/check_nrpe.c

+ 1 - 1
src/check_nrpe.c

@@ -528,7 +528,7 @@ int read_config_file(char *fname)
 			break;
 		while (strchr(delims, *bufp))
 			++bufp;
-		argv[argc] = strsep(&bufp, delims);
+		argv[argc] = my_strsep(&bufp, delims);
 		if (!argv[argc++])
 			break;
 	}