Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/config/modulesets/patches/telepathy-gabble-chmod-unix-socket.patch
blob: 17988ca2834d980e01f37e92a0567a83b2842ed5 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- a/src/tube-stream.c
+++ b/src/tube-stream.c
@@ -667,6 +667,8 @@ tube_stream_open (GabbleTubeStream *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)