rpms/gdm/devel gdm-2.25.2-dont-depend-on-hostname.patch, 1.2, 1.3 gdm.spec, 1.457, 1.458

Ray Strode rstrode at fedoraproject.org
Thu Mar 19 21:20:44 UTC 2009


Author: rstrode

Update of /cvs/pkgs/rpms/gdm/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12644

Modified Files:
	gdm-2.25.2-dont-depend-on-hostname.patch gdm.spec 
Log Message:
- Use gethostname() _properly_ instead of g_get_host_name() when writing
  out xauth files, because the hostname may change out from
  under us and glib caches it.


gdm-2.25.2-dont-depend-on-hostname.patch:

Index: gdm-2.25.2-dont-depend-on-hostname.patch
===================================================================
RCS file: /cvs/pkgs/rpms/gdm/devel/gdm-2.25.2-dont-depend-on-hostname.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gdm-2.25.2-dont-depend-on-hostname.patch	19 Mar 2009 20:35:48 -0000	1.2
+++ gdm-2.25.2-dont-depend-on-hostname.patch	19 Mar 2009 21:20:43 -0000	1.3
@@ -212,14 +212,18 @@
  }
 --- a/daemon/gdm-display-access-file.c	(revision 6790)
 +++ b/daemon/gdm-display-access-file.c	(working copy)
-@@ -438,8 +438,9 @@ _get_auth_info_for_display (GdmDisplayAc
+@@ -438,8 +438,13 @@ _get_auth_info_for_display (GdmDisplayAc
          gdm_display_is_local (display, &is_local, NULL);
  
          if (is_local) {
 +                char localhost[HOST_NAME_MAX + 1] = "";
                  *family = FamilyLocal;
 -                *address = g_strdup (g_get_host_name ());
-+                *address = g_strdup (gethostname (localhost, HOST_NAME_MAX));
++                if (gethostname (localhost, HOST_NAME_MAX) == 0) {
++                        *address = g_strdup (localhost);
++                } else {
++                        *address = g_strdup ("localhost");
++                }
          } else {
                  *family = FamilyWild;
                  gdm_display_get_remote_hostname (display, address, NULL);


Index: gdm.spec
===================================================================
RCS file: /cvs/pkgs/rpms/gdm/devel/gdm.spec,v
retrieving revision 1.457
retrieving revision 1.458
diff -u -r1.457 -r1.458
--- gdm.spec	19 Mar 2009 20:35:48 -0000	1.457
+++ gdm.spec	19 Mar 2009 21:20:43 -0000	1.458
@@ -15,7 +15,7 @@
 Summary: The GNOME Display Manager
 Name: gdm
 Version: 2.26.0
-Release: 4%{?dist}
+Release: 5%{?dist}
 Epoch: 1
 License: GPLv2+
 Group: User Interface/X
@@ -350,6 +350,11 @@
 %{_datadir}/gnome-2.0/ui/GNOME_FastUserSwitchApplet.xml
 
 %changelog
+* Thu Mar 19 2009 Ray Strode <rstrode at redhat.com> - 1:2.26.0-5
+- Use gethostname() _properly_ instead of g_get_host_name() when writing
+  out xauth files, because the hostname may change out from
+  under us and glib caches it.
+
 * Thu Mar 19 2009 Ray Strode <rstrode at redhat.com> - 1:2.26.0-4
 - Use gethostname() instead of g_get_host_name() when writing
   out xauth files, because the hostname may change out from




More information about the fedora-extras-commits mailing list