diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-03-21 14:24:33 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-03-21 14:24:33 +0000 |
commit | 6ddb06d37232a9d02da996e0a83d5acd52002ffc (patch) | |
tree | fb0e3bbd9f4f7e556a08f5e69a871505204efbec /status.c | |
parent | 69d97f6d4b7a373eb2c05ef2c3ca18be3271871b (diff) | |
download | rtmux-6ddb06d37232a9d02da996e0a83d5acd52002ffc.tar.gz rtmux-6ddb06d37232a9d02da996e0a83d5acd52002ffc.tar.bz2 rtmux-6ddb06d37232a9d02da996e0a83d5acd52002ffc.zip |
Extend jobs to support writing and use that for copy-pipe instead of popen,
from Chris Johnsen.
Diffstat (limited to 'status.c')
-rw-r--r-- | status.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -594,7 +594,7 @@ status_find_job(struct client *c, char **iptr) /* If not found at all, start the job and add to the tree. */ if (so == NULL) { - job_run(cmd, status_job_callback, status_job_free, c); + job_run(cmd, NULL, status_job_callback, status_job_free, c); c->references++; so = xmalloc(sizeof *so); |