Blame SOURCES/autofs-5.1.3-fix-typo-in-amd_parse_c.patch

306fa1
autofs-5.1.3 - fix typo in amd_parse.c
306fa1
306fa1
From: Ian Kent <raven@themaw.net>
306fa1
306fa1
Fix a typo in the "cachefs" fs type value syntax error message.
306fa1
306fa1
Signed-off-by: Ian Kent <raven@themaw.net>
306fa1
---
306fa1
 CHANGELOG           |    1 +
306fa1
 modules/amd_parse.y |    2 +-
306fa1
 2 files changed, 2 insertions(+), 1 deletion(-)
306fa1
306fa1
--- autofs-5.0.7.orig/CHANGELOG
306fa1
+++ autofs-5.0.7/CHANGELOG
306fa1
@@ -268,6 +268,7 @@
306fa1
 - reset master map list on startup retry.
306fa1
 - improve debug logging of lookup key.
306fa1
 - fix cachefs parse message not being logged.
306fa1
+- fix typo in amd_parse.c.
306fa1
 
306fa1
 25/07/2012 autofs-5.0.7
306fa1
 =======================
306fa1
--- autofs-5.0.7.orig/modules/amd_parse.y
306fa1
+++ autofs-5.0.7/modules/amd_parse.y
306fa1
@@ -299,7 +299,7 @@ option_assignment: MAP_OPTION OPTION_ASS
306fa1
 			amd_msg(msg_buf);
306fa1
 			YYABORT;
306fa1
 		} else if (!strcmp($3, "cachefs")) {
306fa1
-			sprintf(msg_buf, "file syatem %s is not "
306fa1
+			sprintf(msg_buf, "file system %s is not "
306fa1
 					 "supported by autofs, ignored", $3);
306fa1
 			amd_msg(msg_buf);
306fa1
 		} else {