From: Florian Forster Date: Thu, 21 Feb 2013 09:35:59 +0000 (+0100) Subject: exec plugin: Fix a copy'n'paste mistake in a comment. X-Git-Tag: collectd-4.10.9~11 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=c639797924c64912d71cf83cd50c3508671c9088 exec plugin: Fix a copy'n'paste mistake in a comment. Thanks to Robert Riches Jr for the hint. --- diff --git a/src/exec.c b/src/exec.c index 52747977..9e3a20e6 100644 --- a/src/exec.c +++ b/src/exec.c @@ -491,7 +491,7 @@ static int fork_child (program_list_t *pl, int *fd_in, int *fd_out, int *fd_err) close (fd_pipe_out[1]); } - /* Now connect the `out' pipe to STDOUT */ + /* Now connect the `err' pipe to STDERR */ if (fd_pipe_err[1] != STDERR_FILENO) { dup2 (fd_pipe_err[1], STDERR_FILENO);