diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2015-12-29 04:32:59 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2015-12-29 04:32:59 +0100 |
commit | c754bb7a38393f4d110a1c4795f85dc68c81e1c8 (patch) | |
tree | f03bc48665518bddfba18bdc629490b9a8aa5366 /src/daemon.h | |
parent | the missing bits (diff) | |
download | sat-c754bb7a38393f4d110a1c4795f85dc68c81e1c8.tar.gz sat-c754bb7a38393f4d110a1c4795f85dc68c81e1c8.tar.bz2 sat-c754bb7a38393f4d110a1c4795f85dc68c81e1c8.tar.xz |
implement send_string, remove_job (except for running the job), and get_jobs
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to '')
-rw-r--r-- | src/daemon.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/daemon.h b/src/daemon.h index 773be85..d279dbc 100644 --- a/src/daemon.h +++ b/src/daemon.h @@ -190,9 +190,9 @@ int send_string(int sockfd, int outfd, ...); int remove_job(const char *jobno, int runjob); /** - * Get a `NULL` terminated list of all queued jobs. + * Get a `NULL`-terminated list of all queued jobs. * - * @return A `NULL` terminated list of all queued jobs. `NULL` on error. + * @return A `NULL`-terminated list of all queued jobs. `NULL` on error. */ struct job **get_jobs(void); |