aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2016-08-30 20:02:27 -0400
committerGitHub <noreply@github.com>2016-08-30 20:02:27 -0400
commit050704ab23b698b00ee2ded8dbd4df9afceb8844 (patch)
treef9425477411207e8257b76b0a96b4b029b461fea
parentf4356135a1bd17f46eabc893415bfb1fd03fcd7f (diff)
parent949933c5c3b67e9104361c4e15fa83721e436d43 (diff)
Merge pull request #874 from yohanesu75/ipc-client-fix
Fix to make ipc client code FreeBSD compatible.
-rw-r--r--common/ipc-client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/ipc-client.c b/common/ipc-client.c
index 997a87d1..e155c168 100644
--- a/common/ipc-client.c
+++ b/common/ipc-client.c
@@ -34,7 +34,7 @@ int ipc_open_socket(const char *socket_path) {
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, socket_path, sizeof(addr.sun_path));
addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
- int l = sizeof(addr.sun_family) + strlen(addr.sun_path);
+ int l = sizeof(struct sockaddr_un);
if (connect(socketfd, (struct sockaddr *)&addr, l) == -1) {
sway_abort("Unable to connect to %s", socket_path);
}