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

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