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

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