aboutsummaryrefslogtreecommitdiffstats
path: root/src/fs
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs')
-rw-r--r--src/fs/StandardDirectory.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fs/StandardDirectory.cxx b/src/fs/StandardDirectory.cxx
index c266480f7..c922b22d3 100644
--- a/src/fs/StandardDirectory.cxx
+++ b/src/fs/StandardDirectory.cxx
@@ -129,7 +129,7 @@ static bool
ParseConfigLine(char *line, const char *dir_name, AllocatedPath &result_dir)
{
// strip leading white space
- line = strchug_fast(line);
+ line = StripLeft(line);
// check for end-of-line or comment
if (*line == '\0' || *line == '#')
@@ -141,11 +141,11 @@ ParseConfigLine(char *line, const char *dir_name, AllocatedPath &result_dir)
line += strlen(dir_name);
// strip equals sign and spaces around it
- line = strchug_fast(line);
+ line = StripLeft(line);
if (*line != '=')
return false;
++line;
- line = strchug_fast(line);
+ line = StripLeft(line);
// check if path is quoted
bool quoted = false;