git: 81fc4f36f035 - stable/13 - zfsd(8): Fix a typo in an error message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 01 Nov 2022 06:03:08 UTC
The branch stable/13 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=81fc4f36f035bb81606173ec918b85a7d1bc5a3d commit 81fc4f36f035bb81606173ec918b85a7d1bc5a3d 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:02:22 +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 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; }