From 47244daefb80479c6e006b4e4687432ba6fc9608 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Fri, 14 Nov 2025 21:59:59 +0900 Subject: treewide: migrate ldd callers This discontinues use of the deprecated ldd.Exec function for #25. Signed-off-by: Ophestra --- internal/system/dbus/proc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/system') 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) -- cgit v1.3.1