Update client/internal/profilemanager/service.go

Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
This commit is contained in:
Theodor Midtlien
2026-09-16 10:50:56 +02:00
committed by Theodor S. Midtlien
co-authored by cubic-dev-ai[bot]
parent 41f25c0e5e
commit f44b6f16ff
+1 -1
View File
@@ -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))
}