From dfd94675236844ebcec9ea51f2547ad4fd049357 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Wed, 19 Feb 2025 01:36:07 +0900 Subject: app: merge seal with sys The existence of the appSealSys struct was an implementation detail obsolete since system.I was integrated in 084cd84f36a1d608541b4aa4e1e95334395d8953. Signed-off-by: Ophestra --- internal/app/app.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/app/app.go') diff --git a/internal/app/app.go b/internal/app/app.go index 9dd082b9..eb463924 100644 --- a/internal/app/app.go +++ b/internal/app/app.go @@ -47,10 +47,10 @@ func (a *app) String() string { } if a.appSeal != nil { - if a.appSeal.sys.user.uid == nil { + if a.appSeal.user.uid == nil { return fmt.Sprintf("(sealed app %s with invalid uid)", a.id) } - return fmt.Sprintf("(sealed app %s as uid %s)", a.id, a.appSeal.sys.user.uid) + return fmt.Sprintf("(sealed app %s as uid %s)", a.id, a.appSeal.user.uid) } return fmt.Sprintf("(unsealed app %s)", a.id) -- cgit v1.3.1