Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 08 Jul 2026 17:57:35 +0000
From:      Alan Somers <asomers@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 1d02c2536c7b - stable/15 - fusefs: proofread an error message in the tests
Message-ID:  <6a4e8f8f.39525.24fe97a@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch stable/15 has been updated by asomers:

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

commit 1d02c2536c7b7204e184a3f5e011d0f30fd5f97e
Author:     Alan Somers <asomers@FreeBSD.org>
AuthorDate: 2026-06-23 20:48:06 +0000
Commit:     Alan Somers <asomers@FreeBSD.org>
CommitDate: 2026-07-08 17:56:51 +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 fc9a80639283..046d95de3859 100644
--- a/tests/sys/fs/fusefs/mockfs.cc
+++ b/tests/sys/fs/fusefs/mockfs.cc
@@ -999,7 +999,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) {


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a4e8f8f.39525.24fe97a>