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

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