From: Daniel Carl Date: Sun, 24 Jan 2016 19:03:15 +0000 (+0100) Subject: Fixed wrong path for the sockets. X-Git-Url: https://git.owens.tech///git?a=commitdiff_plain;h=26e5307a78623ac204d30a845e9ec09e80a3f5a5;p=vimb.git Fixed wrong path for the sockets. --- diff --git a/src/io.c b/src/io.c index 0abac30..ee7c77e 100644 --- a/src/io.c +++ b/src/io.c @@ -43,7 +43,7 @@ gboolean io_init_socket(const char *name) struct sockaddr_un local; /* create socket in runtime directory */ - dir = g_build_filename(util_get_runtime_dir(vb.config.profile), PROJECT, "socket", NULL); + dir = g_build_filename(util_get_runtime_dir(vb.config.profile), "socket", NULL); util_create_dir_if_not_exists(dir); path = g_build_filename(dir, name, NULL); g_free(dir);