From ce703d84aab4dfeab384e5cafff281b4a3dbf8bc Mon Sep 17 00:00:00 2001 From: Theodor Midtlien Date: Tue, 15 Sep 2026 16:15:33 +0200 Subject: [PATCH] Update client/internal/profilemanager/service.go Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> --- client/internal/profilemanager/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/internal/profilemanager/service.go b/client/internal/profilemanager/service.go index 4d4844f1a..d171f5c2e 100644 --- a/client/internal/profilemanager/service.go +++ b/client/internal/profilemanager/service.go @@ -891,7 +891,7 @@ func readProfileOwners(path string) ([]ipcauth.Principal, error) { // recorded now. func StampOwner(path string, owner ipcauth.Identity) error { if !owner.Known() { - return fmt.Errorf("cannot stamp owner that is verified by the kernel") + return fmt.Errorf("cannot stamp owner that is not verified by the kernel") } return stampPrincipal(path, ipcauth.OwnerPrincipalForIdentity(owner)) }