load-fragment: use path_join() where appropriate

This commit is contained in:
Lennart Poettering 2019-08-20 17:32:34 +02:00
parent d5a1c99b25
commit 4a8daee72f

View file

@ -98,14 +98,12 @@ int parse_confirm_spawn(const char *value, char **console) {
if (r == 0) {
*console = NULL;
return 0;
}
if (r > 0) /* on with default tty */
} else if (r > 0) /* on with default tty */
s = strdup("/dev/console");
else if (is_path(value)) /* on with fully qualified path */
s = strdup(value);
else /* on with only a tty file name, not a fully qualified path */
s = strjoin("/dev/", value);
s = path_join("/dev/", value);
if (!s)
return -ENOMEM;