Browse Source

Missed the strsep to my_strsep change in check_nrpe.c

John C. Frickson 9 years ago
parent
commit
9a909d0679
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/check_nrpe.c

+ 1 - 1
src/check_nrpe.c

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