Hello community,

here is the log from the commit of package xfce4-session for openSUSE:Factory
checked in at Tue Jul 26 17:03:41 CEST 2011.



--------
--- xfce4-session/xfce4-session.changes 2011-05-17 11:04:40.000000000 +0200
+++ /mounts/work_src_done/STABLE/xfce4-session/xfce4-session.changes    
2011-07-26 09:42:34.000000000 +0200
@@ -1,0 +2,7 @@
+Tue Jul 26 07:19:25 UTC 2011 - g...@opensuse.org
+
+- added xfce4-session-4.8.1-disable-hostname-check.patch so
+  hostname checks are only performed when TCP connections are
+  enabled
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


New:
----
  xfce4-session-4.8.1-disable-hostname-check.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ xfce4-session.spec ++++++
--- /var/tmp/diff_new_pack.Wb3exC/_old  2011-07-26 17:03:23.000000000 +0200
+++ /var/tmp/diff_new_pack.Wb3exC/_new  2011-07-26 17:03:23.000000000 +0200
@@ -19,16 +19,18 @@
 
 Name:           xfce4-session
 Version:        4.8.1
-Release:        11
+Release:        13
 License:        GPLv2+
 Summary:        Xfce Session manager
 Url:            http://www.xfce.org/projects/xfce4-session/
 Group:          System/GUI/XFCE
 Source:         %{name}-%{version}.tar.bz2
 # PATCH-FEATURE-OPENSUSE xfce4-session-simple-splash-remove-shadows.patch 
g...@opensuse.org -- Improves readability of the simple splash engine text by 
removing the text shadows
-Patch1:         xfce4-session-simple-splash-remove-shadows.patch
+Patch0:         xfce4-session-simple-splash-remove-shadows.patch
 # PATCH-FIX-UPSTREAM xfce4-session-4.8.1-fix-gdm_lang-usage.patch bnc#694203 
bxo#7400 g...@opensuse.org -- Fixes GDM_LANG usage to be compatible with GDM3 
(backported from upstream git)
-Patch2:         xfce4-session-4.8.1-fix-gdm_lang-usage.patch
+Patch1:         xfce4-session-4.8.1-fix-gdm_lang-usage.patch
+# PATCH-FIX-UPSTREAM xfce4-session-4.8.1-disable-hostname-check.patch 
g...@opensuse.org -- Only perform hostname checks when TCP connections are 
enabled (backported from upstream git)
+Patch2:         xfce4-session-4.8.1-disable-hostname-check.patch
 BuildRequires:  intltool
 BuildRequires:  perl-XML-Parser
 BuildRequires:  pkgconfig(dbus-glib-1)
@@ -88,6 +90,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 %patch1 -p1
 %patch2 -p1
 

++++++ xfce4-session-4.8.1-disable-hostname-check.patch ++++++
commit ba231e2eee82c321f473687e425d455fb36205d9
Author: Benedikt Meurer <benedikt.meu...@googlemail.com>
Date:   Tue Jul 26 08:19:09 2011 +0200

    Only perform hostname checks when TCP connections are enabled.

    Based on a patch from Guido Berhoerster <g...@opensuse.org>.

 xfce4-session/main.c |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/xfce4-session/main.c b/xfce4-session/main.c
index 0466f48..8f7c003 100644
--- a/xfce4-session/main.c
+++ b/xfce4-session/main.c
@@ -247,9 +247,12 @@ main (int argc, char **argv)
   dpy = gdk_display_get_default ();
   init_display (manager, dpy, channel, opt_disable_tcp);

-  /* verify that the DNS settings are ok */
-  xfsm_splash_screen_next (splash_screen, _("Verifying DNS settings"));
-  xfsm_dns_check ();
+  if (!opt_disable_tcp && xfconf_channel_get_bool (channel, 
"/security/EnableTcp", FALSE))
+    {
+      /* verify that the DNS settings are ok */
+      xfsm_splash_screen_next (splash_screen, _("Verifying DNS settings"));
+      xfsm_dns_check ();
+    }

   xfsm_splash_screen_next (splash_screen, _("Loading session data"));


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to