From e8b54c9c161d120aaeeff576056c62624cf30b22 Mon Sep 17 00:00:00 2001 From: Lars Wendler Date: Wed, 8 Jul 2020 16:33:38 +0200 Subject: [PATCH] Read radeon-profile-daemon-server socket from /run/radeon-profile-daemon/ Now that the UNIX socket in radeon-profile-daemon has been moved to a subdirectory in order to no longer make it world writeable, we need to update the socket path. Depends on marazmista/radeon-profile-daemon#23. Signed-off-by: Lars Wendler [rewrote original commit message as it's no longer Gentoo specific] Signed-off-by: Stijn Tintel --- radeon-profile/daemonComm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radeon-profile/daemonComm.cpp b/radeon-profile/daemonComm.cpp index 21ec38f6..dff00a0e 100644 --- a/radeon-profile/daemonComm.cpp +++ b/radeon-profile/daemonComm.cpp @@ -34,7 +34,7 @@ void DaemonComm::sendConnectionConfirmation() { void DaemonComm::connectToDaemon() { qDebug() << "Connecting to daemon..."; signalSender->abort(); - signalSender->connectToServer("/run/radeon-profile-daemon-server"); + signalSender->connectToServer("/run/radeon-profile-daemon/radeon-profile-daemon-server"); } void DaemonComm::disconnectDaemon() {