diff options
Diffstat (limited to 'system/dbus/proc.go')
| -rw-r--r-- | system/dbus/proc.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/dbus/proc.go b/system/dbus/proc.go index ee298096..d6f98907 100644 --- a/system/dbus/proc.go +++ b/system/dbus/proc.go @@ -43,10 +43,10 @@ func (p *Proxy) Start() error { }, nil) } else { var toolPath *container.Absolute - if a, err := container.NewAbsolute(p.name); err != nil { + if a, err := container.NewAbs(p.name); err != nil { if p.name, err = exec.LookPath(p.name); err != nil { return err - } else if toolPath, err = container.NewAbsolute(p.name); err != nil { + } else if toolPath, err = container.NewAbs(p.name); err != nil { return err } } else { |
