Pārlūkot izejas kodu

Missed the strsep to my_strsep change in check_nrpe.c

John C. Frickson 10 gadi atpakaļ
vecāks
revīzija
9a909d0679
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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;
 	}