aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/app/spx11.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-10-07 20:06:26 +0900
committerOphestra <cat@gensokyo.uk>2025-10-07 20:57:58 +0900
commit0e6c1a50260de141c50bb50fd3f2b2bcf9a3fe64 (patch)
treedfe9c40ceb8c1be8d2728a2db9017bffef174d3d /internal/app/spx11.go
parentd23b4dc9e64d3f00e746c65f3038a1a6de44b8f5 (diff)
container/check: move absolute pathname
This allows use of absolute pathname values without importing container. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/app/spx11.go')
-rw-r--r--internal/app/spx11.go5
1 files changed, 3 insertions, 2 deletions
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
}
}