git: 0bca01eae775 - stable/12 - zfsd(8): Fix a typo in an error message

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Tue, 01 Nov 2022 06:03:57 UTC
The branch stable/12 has been updated by gbe (doc committer):

URL: https://cgit.FreeBSD.org/src/commit/?id=0bca01eae775015e6e52657875cf39a0e0004e61

commit 0bca01eae775015e6e52657875cf39a0e0004e61
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-10-25 10:55:42 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-11-01 06:03:26 +0000

    zfsd(8): Fix a typo in an error message
    
    - s/faild/failed/
    
    (cherry picked from commit 4bd5e6221ed11ba6e584eae9e511bd8a1c18031c)
---
 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 2f17b474e493..369176ba4ef6 100644
--- a/cddl/usr.sbin/zfsd/zfsd.cc
+++ b/cddl/usr.sbin/zfsd/zfsd.cc
@@ -274,7 +274,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;
 	}