chiark / gitweb /
core: introduce parse_ip_port (#4825)
[elogind.git] / src / basic / extract-word.c
index bace3c183671e373a83bcf4ce4655a631b0bb8de..609f5dc22299f6c31d31f6613677eb06049573b0 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)