]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/basic/extract-word.c
tree-wide: make invocations of extract_first_word more uniform (#4627)
[thirdparty/systemd.git] / src / basic / extract-word.c
index d6c12284637604a4a052d68d3f9933a63ec88988..dbe64a9a58eff1765dd5285bba72806b04c2f9d5 100644 (file)
@@ -48,7 +48,7 @@ int extract_first_word(const char **p, char **ret, const char *separators, Extra
 
         /* Bail early if called after last value or with no input */
         if (!*p)
-                goto finish_force_terminate;
+                goto finish;
         c = **p;
 
         if (!separators)