autofs-5.1.8 - fix typo in create_cmd_pipe_fifo() From: Ian Kent Fix this typo in create_cmd_pipe_fifo() Signed-off-by: Ian Kent --- CHANGELOG | 1 + daemon/automount.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index f61d812e..8fc6c231 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -100,6 +100,7 @@ - fix let OpenLDAP handle SASL binding. - always recreate credential cache. - fix ldap_parse_page_control() check. +- fix typo in create_cmd_pipe_fifo(). 19/10/2021 autofs-5.1.8 - add xdr_exports(). diff --git a/daemon/automount.c b/daemon/automount.c index 7acb3276..c125e625 100644 --- a/daemon/automount.c +++ b/daemon/automount.c @@ -1397,7 +1397,7 @@ static int create_cmd_pipe_fifo(void) if (fd < 0) { char *estr = strerror_r(errno, buf, MAX_ERR_BUF); unlink(cmd_pipe_name); - fprintf(stderr, "%s: failed to open cwcommand pipe %s: %s", + fprintf(stderr, "%s: failed to open command pipe %s: %s", program, cmd_pipe_name, estr); return -1; }