git: 4bd5e6221ed1 - main - zfsd(8): Fix a typo in an error message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 25 Oct 2022 10:55:56 UTC
The branch main has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=4bd5e6221ed11ba6e584eae9e511bd8a1c18031c
commit 4bd5e6221ed11ba6e584eae9e511bd8a1c18031c
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-10-25 10:55:42 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-10-25 10:55:42 +0000
zfsd(8): Fix a typo in an error message
- s/faild/failed/
MFC after: 1 week
---
cddl/usr.sbin/zfsd/zfsd.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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;
}