aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorIan Kent <raven@themaw.net>2017-10-21 18:55:33 +0800
committerIan Kent <raven@themaw.net>2017-12-18 08:47:03 +0800
commit5326069f6543f960636c1ca6d748efca62705486 (patch)
treed6962389de7448d383557a5ee37ff06ef1008dde /modules
parent964be90aa6e7b41c486a77a22aee4110b94a81be (diff)
downloadautofs-5326069f6543f960636c1ca6d748efca62705486.tar.gz
autofs-5.1.3 - fix typo in amd_parse.c
Fix a typo in the "cachefs" fs type value syntax error message. Signed-off-by: Ian Kent <raven@themaw.net>
Diffstat (limited to 'modules')
-rw-r--r--modules/amd_parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/amd_parse.y b/modules/amd_parse.y
index 9694515d..2a92d4a1 100644
--- a/modules/amd_parse.y
+++ b/modules/amd_parse.y
@@ -299,7 +299,7 @@ option_assignment: MAP_OPTION OPTION_ASSIGN FS_TYPE
amd_msg(msg_buf);
YYABORT;
} else if (!strcmp($3, "cachefs")) {
- sprintf(msg_buf, "file syatem %s is not "
+ sprintf(msg_buf, "file system %s is not "
"supported by autofs, ignored", $3);
amd_msg(msg_buf);
} else {