internal/app: apply pd behaviour to outcomeState

This avoids needlessly clobbering hst.Config.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2025-10-05 03:31:43 +09:00
parent 8ace214832
commit 92b83bd599
2 changed files with 17 additions and 18 deletions

View File

@@ -20,7 +20,7 @@ type spX11Op struct {
Display string
}
func (s *spX11Op) toSystem(state *outcomeStateSys, config *hst.Config) error {
func (s *spX11Op) toSystem(state *outcomeStateSys, _ *hst.Config) error {
if d, ok := state.k.lookupEnv("DISPLAY"); !ok {
return newWithMessage("DISPLAY is not set")
} else {
@@ -46,7 +46,7 @@ func (s *spX11Op) toSystem(state *outcomeStateSys, config *hst.Config) error {
}
} else {
state.sys.UpdatePermType(hst.EX11, socketPath, acl.Read, acl.Write, acl.Execute)
if !config.Container.HostAbstract {
if !state.Container.HostAbstract {
s.Display = "unix:" + socketPath.String()
}
}