git: afc31e48e0e4 - stable/14 - fusefs: proofread an error message in the tests

From: Alan Somers <asomers_at_FreeBSD.org>
Date: Wed, 05 Aug 2026 15:10:24 UTC
The branch stable/14 has been updated by asomers:

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

commit afc31e48e0e4c6062843c8708ce7d835ae1234ed
Author:     Alan Somers <asomers@FreeBSD.org>
AuthorDate: 2026-06-23 20:48:06 +0000
Commit:     Alan Somers <asomers@FreeBSD.org>
CommitDate: 2026-08-05 15:09:01 +0000

    fusefs: proofread an error message in the tests
    
    Reported by:    otis
    Fixes:          2c1482e3053 ("fusefs: fix a race in the pre-init tests")
    Sponsored by:   ConnectWise
    
    (cherry picked from commit 381ebe25f0b9fae5b3470e9c6e0767909e0fa85a)
---
 tests/sys/fs/fusefs/mockfs.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/sys/fs/fusefs/mockfs.cc b/tests/sys/fs/fusefs/mockfs.cc
index fb1a29e85496..996ce43a6d25 100644
--- a/tests/sys/fs/fusefs/mockfs.cc
+++ b/tests/sys/fs/fusefs/mockfs.cc
@@ -1000,7 +1000,7 @@ void MockFS::read_request(mockfs_buf_in &in, ssize_t &res) {
 void MockFS::start_service() {
 	if (pthread_create(&m_daemon_id, NULL, service, (void*)this))
 		throw(std::system_error(errno, std::system_category(),
-			"Couldn't Couldn't start fuse thread"));
+			"Couldn't start fuse thread"));
 }
 
 void MockFS::write_response(const mockfs_buf_out &out) {