chiark / gitweb /
util: rework word parsing and c unescaping code
[elogind.git] / src / sysusers / sysusers.c
index 9c597921b7e72aa88c0421a72d95e7092ac14a7c..e549df6d3eedd2de5ac4940b9bddae5979316526 100644 (file)
@@ -1384,7 +1384,7 @@ static int parse_line(const char *fname, unsigned line, const char *buffer) {
 
         /* Parse columns */
         p = buffer;
-        r = unquote_many_words(&p, &action, &name, &id, &description, &home, NULL);
+        r = unquote_many_words(&p, 0, &action, &name, &id, &description, &home, NULL);
         if (r < 0) {
                 log_error("[%s:%u] Syntax error.", fname, line);
                 return r;