You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
888 B
31 lines
888 B
7 years ago
|
autofs-5.1.2 - fix cachefs parse message not being logged
|
||
|
|
||
|
From: Ian Kent <raven@themaw.net>
|
||
|
|
||
|
Signed-off-by: Ian Kent <raven@themaw.net>
|
||
|
---
|
||
|
CHANGELOG | 1 +
|
||
|
modules/amd_parse.y | 1 +
|
||
|
2 files changed, 2 insertions(+)
|
||
|
|
||
|
--- autofs-5.0.7.orig/CHANGELOG
|
||
|
+++ autofs-5.0.7/CHANGELOG
|
||
|
@@ -267,6 +267,7 @@
|
||
|
- improve description of mount_nfs_default_protocol.
|
||
|
- reset master map list on startup retry.
|
||
|
- improve debug logging of lookup key.
|
||
|
+- fix cachefs parse message not being logged.
|
||
|
|
||
|
25/07/2012 autofs-5.0.7
|
||
|
=======================
|
||
|
--- autofs-5.0.7.orig/modules/amd_parse.y
|
||
|
+++ autofs-5.0.7/modules/amd_parse.y
|
||
|
@@ -301,6 +301,7 @@ option_assignment: MAP_OPTION OPTION_ASS
|
||
|
} 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;
|