summaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorrenelson <[email protected]>2013-12-17 10:38:28 -0800
committerBrian Behlendorf <[email protected]>2013-12-17 10:48:28 -0800
commit758d35520b7e15fd6db2e8c8f45294a9cf0514cb (patch)
treedc5aca9d353c9ab66e1c5ecd1524974481601055 /cmd
parent7dc71949f2f013a7bf744230d60770893ce23a6a (diff)
Fix grammar in parse_options() error message
A minor grammar error was corrected in in the parse_options() error handling for the ENOENT case. Signed-off-by: Brian Behlendorf <[email protected]> Signed-off-by: renelson <[email protected]> Issue #1968
Diffstat (limited to 'cmd')
-rw-r--r--cmd/mount_zfs/mount_zfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/mount_zfs/mount_zfs.c b/cmd/mount_zfs/mount_zfs.c
index 83b57f4e9..b3c3e9a14 100644
--- a/cmd/mount_zfs/mount_zfs.c
+++ b/cmd/mount_zfs/mount_zfs.c
@@ -420,7 +420,7 @@ main(int argc, char **argv)
return (MOUNT_SYSERR);
case ENOENT:
(void) fprintf(stderr, gettext("filesystem '%s' "
- "cannot be mounted of due invalid option "
+ "cannot be mounted due to invalid option "
"'%s'.\n"), dataset, badopt);
(void) fprintf(stderr, gettext("Use the '-s' option "
"to ignore the bad mount option.\n"));