aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/system
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-11-14 21:59:59 +0900
committerOphestra <cat@gensokyo.uk>2025-11-14 21:59:59 +0900
commit47244daefb80479c6e006b4e4687432ba6fc9608 (patch)
treeee4c977bf02fb094aee33332291d3fc8c8f2ad84 /internal/system
parent46fa1044195ed1e98f3b27cadbad4f8153f7977d (diff)
treewide: migrate ldd callers
This discontinues use of the deprecated ldd.Exec function for #25. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/system')
-rw-r--r--internal/system/dbus/proc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/system/dbus/proc.go b/internal/system/dbus/proc.go
index 0bd9c6b3..c934e89e 100644
--- a/internal/system/dbus/proc.go
+++ b/internal/system/dbus/proc.go
@@ -54,7 +54,7 @@ func (p *Proxy) Start() error {
}
var libPaths []*check.Absolute
- if entries, err := ldd.Exec(ctx, p.msg, toolPath.String()); err != nil {
+ if entries, err := ldd.Resolve(ctx, p.msg, toolPath); err != nil {
return err
} else {
libPaths = ldd.Path(entries)