summaryrefslogtreecommitdiffstats
path: root/job.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2019-06-28 17:02:26 +0100
committerThomas Adam <thomas@xteddy.org>2019-06-28 17:02:26 +0100
commit68c2fc682493f154d833ae6195b4adc33fd4a3b2 (patch)
tree48e607a5287d05b834b81eefc047ae80c3f04bf4 /job.c
parentb6b4f86cfc34f9386819af8f04add72833ccc69a (diff)
parent4ff7bc3eb32e9d66312d16757fb8c083df2d87d6 (diff)
Merge branch 'obsd-master'
Diffstat (limited to 'job.c')
-rw-r--r--job.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/job.c b/job.c
index dac38ed9..10883e8e 100644
--- a/job.c
+++ b/job.c
@@ -117,7 +117,7 @@ job_run(const char *cmd, struct session *s, const char *cwd,
close(out[0]);
nullfd = open(_PATH_DEVNULL, O_RDWR, 0);
- if (nullfd < 0)
+ if (nullfd == -1)
fatal("open failed");
if (dup2(nullfd, STDERR_FILENO) == -1)
fatal("dup2 failed");