autofs-5.1.2 - fix cachefs parse message not being logged From: Ian Kent Signed-off-by: Ian Kent --- CHANGELOG | 1 + modules/amd_parse.y | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 45cfa66..9bf600f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -17,6 +17,7 @@ xx/xx/2016 autofs-5.1.3 - configure: add cache variable for Linux proc filesystem check. - Avoid local variable name shadowing another. - fix typo in MOUNT_FLAG_GHOST comment. +- fix cachefs parse message not being logged. 15/06/2016 autofs-5.1.2 ======================= diff --git a/modules/amd_parse.y b/modules/amd_parse.y index ce8623d..bfa1d51 100644 --- a/modules/amd_parse.y +++ b/modules/amd_parse.y @@ -301,6 +301,7 @@ option_assignment: MAP_OPTION OPTION_ASSIGN FS_TYPE } else if (!strcmp($3, "cachefs")) { sprintf(msg_buf, "file syatem %s is not " "supported by autofs, ignored", $3); + amd_msg(msg_buf); } else { amd_notify($1); YYABORT;