From 0e6c1a50260de141c50bb50fd3f2b2bcf9a3fe64 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 7 Oct 2025 20:06:26 +0900 Subject: container/check: move absolute pathname This allows use of absolute pathname values without importing container. Signed-off-by: Ophestra --- internal/app/spx11.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'internal/app/spx11.go') diff --git a/internal/app/spx11.go b/internal/app/spx11.go index 0d287e05..b21eb48d 100644 --- a/internal/app/spx11.go +++ b/internal/app/spx11.go @@ -8,6 +8,7 @@ import ( "strings" "hakurei.app/container" + "hakurei.app/container/check" "hakurei.app/hst" "hakurei.app/system/acl" ) @@ -29,13 +30,13 @@ func (s *spX11Op) toSystem(state *outcomeStateSys, _ *hst.Config) error { // the socket file at `/tmp/.X11-unix/X%d` is typically owned by the priv user // and not accessible by the target user - var socketPath *container.Absolute + var socketPath *check.Absolute if len(s.Display) > 1 && s.Display[0] == ':' { // `:%d` if n, err := strconv.Atoi(s.Display[1:]); err == nil && n >= 0 { socketPath = absX11SocketDir.Append("X" + strconv.Itoa(n)) } } else if len(s.Display) > 5 && strings.HasPrefix(s.Display, "unix:") { // `unix:%s` - if a, err := container.NewAbs(s.Display[5:]); err == nil { + if a, err := check.NewAbs(s.Display[5:]); err == nil { socketPath = a } } -- cgit v1.3.1