gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r30068 - gnunet/src/util


From: gnunet
Subject: [GNUnet-SVN] r30068 - gnunet/src/util
Date: Wed, 9 Oct 2013 22:47:26 +0200

Author: grothoff
Date: 2013-10-09 22:47:26 +0200 (Wed, 09 Oct 2013)
New Revision: 30068

Modified:
   gnunet/src/util/network.c
Log:
-fix warning

Modified: gnunet/src/util/network.c
===================================================================
--- gnunet/src/util/network.c   2013-10-09 20:43:14 UTC (rev 30067)
+++ gnunet/src/util/network.c   2013-10-09 20:47:26 UTC (rev 30068)
@@ -421,7 +421,7 @@
   {
     /* set permissions of newly created UNIX domain socket to "user-only"; 
applications
        can choose to relax this later */
-    mode_t old_mask;
+    mode_t old_mask = 0; /* assigned to make compiler happy */
 
     if (AF_UNIX == address->sa_family)
       old_mask = umask (S_IWGRP | S_IRGRP | S_IXGRP | S_IWOTH | S_IROTH | 
S_IXOTH);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]