[Xfce4-commits] r29696 - in xfce4-session/trunk: . xfce4-session
Brian Tarricone
kelnos at xfce.org
Thu Apr 2 10:45:53 CEST 2009
Author: kelnos
Date: 2009-04-02 08:45:53 +0000 (Thu, 02 Apr 2009)
New Revision: 29696
Modified:
xfce4-session/trunk/ChangeLog
xfce4-session/trunk/NEWS
xfce4-session/trunk/xfce4-session/sm-layer.c
Log:
* xfce4-session/sm-layer.c: Fix default value for /security/EnableTcp
so it's disabled if the property isn't in xfconf (bug 5126).
Modified: xfce4-session/trunk/ChangeLog
===================================================================
--- xfce4-session/trunk/ChangeLog 2009-04-02 07:02:16 UTC (rev 29695)
+++ xfce4-session/trunk/ChangeLog 2009-04-02 08:45:53 UTC (rev 29696)
@@ -1,3 +1,8 @@
+2009-04-02 Brian Tarricone <bjt23 at cornell.edu>
+
+ * xfce4-session/sm-layer.c: Fix default value for /security/EnableTcp
+ so it's disabled if the property isn't in xfconf (bug 5126).
+
2009-03-01 Brian Tarricone <bjt23 at cornell.edu>
* settings/xfae-model.c: Don't crash in xfae_item_free() when passed
Modified: xfce4-session/trunk/NEWS
===================================================================
--- xfce4-session/trunk/NEWS 2009-04-02 07:02:16 UTC (rev 29695)
+++ xfce4-session/trunk/NEWS 2009-04-02 08:45:53 UTC (rev 29696)
@@ -3,6 +3,8 @@
- Fix crash in settings dialog when a .desktop file with a missing
Application key is opened (bug 5020).
+- Ensure networked session handling over TCP is disabled by
+ default (bug 5126).
4.6.0
=====
Modified: xfce4-session/trunk/xfce4-session/sm-layer.c
===================================================================
--- xfce4-session/trunk/xfce4-session/sm-layer.c 2009-04-02 07:02:16 UTC (rev 29695)
+++ xfce4-session/trunk/xfce4-session/sm-layer.c 2009-04-02 08:45:53 UTC (rev 29696)
@@ -105,7 +105,7 @@
char *network_idlist;
char error[2048];
- if (disable_tcp || !xfconf_channel_get_bool (channel, "/security/EnableTcp", TRUE))
+ if (disable_tcp || !xfconf_channel_get_bool (channel, "/security/EnableTcp", FALSE))
{
#ifdef HAVE__ICETRANSNOLISTEN
extern void _IceTransNoListen (char *protocol);
More information about the Xfce4-commits
mailing list