From ea8f228af36b2c9ae9918f7760c3af4f1e21cfa2 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Fri, 17 Jan 2025 23:43:32 +0900 Subject: proc/priv/shim: merge shim into main program 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 175c315a..0da8148b 100644 --- a/internal/app/app.go +++ b/internal/app/app.go @@ -5,9 +5,9 @@ import ( "sync" "sync/atomic" - "git.gensokyo.uk/security/fortify/cmd/fshim/ipc/shim" "git.gensokyo.uk/security/fortify/fst" "git.gensokyo.uk/security/fortify/internal/linux" + "git.gensokyo.uk/security/fortify/internal/proc/priv/shim" ) type App interface { @@ -23,7 +23,7 @@ type App interface { type RunState struct { // Start is true if fsu is successfully started. Start bool - // ExitCode is the value returned by fshim. + // ExitCode is the value returned by shim. ExitCode int // WaitErr is error returned by the underlying wait syscall. WaitErr error -- cgit v1.3.1