]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/Parsing.cc
Enable length configuration for pipeline_prefetch queue
[thirdparty/squid.git] / src / Parsing.cc
index 1a764878d9eb69c1616c5532ecd885108259f3eb..b180eaa431e2ca2847380d22f902049de2038750 100644 (file)
@@ -33,6 +33,7 @@
 #include "squid.h"
 #include "cache_cf.h"
 #include "compat/strtoll.h"
+#include "ConfigParser.h"
 #include "Parsing.h"
 #include "globals.h"
 #include "Debug.h"
@@ -161,7 +162,7 @@ GetInteger64(void)
 int
 GetInteger(void)
 {
-    char *token = strtok(NULL, w_space);
+    char *token = ConfigParser::strtokFile();
     int i;
 
     if (token == NULL)