aboutsummaryrefslogtreecommitdiff
path: root/cddl
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2022-10-25 10:55:42 +0000
committerGordon Bergling <gbe@FreeBSD.org>2022-11-01 06:02:22 +0000
commit81fc4f36f035bb81606173ec918b85a7d1bc5a3d (patch)
tree127d36a11fce0a6f136a59621604a0370b07dc1b /cddl
parent46d324ec6502758cbb17866e3de5e11981f03f15 (diff)
downloadsrc-81fc4f36f035bb81606173ec918b85a7d1bc5a3d.tar.gz
src-81fc4f36f035bb81606173ec918b85a7d1bc5a3d.zip
zfsd(8): Fix a typo in an error message
- s/faild/failed/ (cherry picked from commit 4bd5e6221ed11ba6e584eae9e511bd8a1c18031c)
Diffstat (limited to 'cddl')
-rw-r--r--cddl/usr.sbin/zfsd/zfsd.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/cddl/usr.sbin/zfsd/zfsd.cc b/cddl/usr.sbin/zfsd/zfsd.cc
index 876cca836e9e..29c6b1ae22e2 100644
--- a/cddl/usr.sbin/zfsd/zfsd.cc
+++ b/cddl/usr.sbin/zfsd/zfsd.cc
@@ -276,7 +276,7 @@ ZfsDaemon::RescanSystem()
result = geom_gettree(&mesh);
if (result != 0) {
syslog(LOG_ERR, "ZfsDaemon::RescanSystem: "
- "geom_gettree faild with error %d\n", result);
+ "geom_gettree failed with error %d\n", result);
return;
}