diff options
| author | Ophestra <cat@gensokyo.uk> | 2024-12-27 18:38:11 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2024-12-27 18:38:11 +0900 |
| commit | 1f173a469c8f16e9cf890a5f0d88bd61440f96f2 (patch) | |
| tree | bf26ea93a61317905540543b4d85c5c4bed4322b /internal/system | |
| parent | 2fdbd6a4dd39355e94fdecd7756d4dbf9763b3f0 (diff) | |
system/dbus: fix inverted system bus state
Debug message and socket cleanup gets missed due to this value being inverted.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/system')
| -rw-r--r-- | internal/system/dbus.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/system/dbus.go b/internal/system/dbus.go index 551af1ce..3bed540a 100644 --- a/internal/system/dbus.go +++ b/internal/system/dbus.go @@ -36,7 +36,7 @@ func (sys *I) ProxyDBus(session, system *dbus.Config, sessionPath, systemPath st } // system bus is optional - d.system = system == nil + d.system = system != nil // upstream address, downstream socket path var sessionBus, systemBus [2]string |
