aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2024-12-27 18:38:11 +0900
committerOphestra <cat@gensokyo.uk>2024-12-27 18:38:11 +0900
commit1f173a469c8f16e9cf890a5f0d88bd61440f96f2 (patch)
treebf26ea93a61317905540543b4d85c5c4bed4322b /internal
parent2fdbd6a4dd39355e94fdecd7756d4dbf9763b3f0 (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')
-rw-r--r--internal/system/dbus.go2
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