Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/config/modulesets/patches/telepathy-salut-chmod-unix-socket.patch
blob: b6ba1b00b0921b88b23acb968dbd28562ecfd381 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/src/tube-stream.c b/src/tube-stream.c
index 290bde6..bbc69a2 100644
--- a/src/tube-stream.c
+++ b/src/tube-stream.c
@@ -736,6 +736,10 @@ tube_stream_open (SalutTubeStream *self,
           g_free (path);
           return FALSE;
         }
+
+      /* Everyone can use the socket */
+      chmod (path, 0777);
+
       g_free (path);
     }
   else if (priv->address_type == TP_SOCKET_ADDRESS_TYPE_IPV4)