]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/shared/exec-util.c
shared/exec-util: null_or_empty_path() does not return boolean
[thirdparty/systemd.git] / src / shared / exec-util.c
index ac68cbc4cb16681e3d25cecb3cba6567310c4b67..a2e8f428e691cedbca9e725c08a381e262485a61 100644 (file)
@@ -39,7 +39,7 @@ static int do_spawn(const char *path, char *argv[], int stdout_fd, pid_t *pid, b
         pid_t _pid;
         int r;
 
-        if (null_or_empty_path(path)) {
+        if (null_or_empty_path(path) > 0) {
                 log_debug("%s is empty (a mask).", path);
                 return 0;
         }