Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 1 Nov 2022 06:03:57 GMT
From:      Gordon Bergling <gbe@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 0bca01eae775 - stable/12 - zfsd(8): Fix a typo in an error message
Message-ID:  <202211010603.2A163viv095164@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;
 	}
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202211010603.2A163viv095164>