rpms/gdm/devel gdm-2.19.1-security-tokens.patch,1.2,1.3

Matthias Clasen (mclasen) fedora-extras-commits at redhat.com
Mon May 21 18:57:50 UTC 2007


Author: mclasen

Update of /cvs/extras/rpms/gdm/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv26753

Modified Files:
	gdm-2.19.1-security-tokens.patch 
Log Message:
fix patch


gdm-2.19.1-security-tokens.patch:

Index: gdm-2.19.1-security-tokens.patch
===================================================================
RCS file: /cvs/extras/rpms/gdm/devel/gdm-2.19.1-security-tokens.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gdm-2.19.1-security-tokens.patch	21 May 2007 18:39:55 -0000	1.2
+++ gdm-2.19.1-security-tokens.patch	21 May 2007 18:57:45 -0000	1.3
@@ -1,5 +1,5 @@
---- gdm-2.19.1/configure.ac.security-tokens	2007-05-21 12:57:13.000000000 -0400
-+++ gdm-2.19.1/configure.ac	2007-05-21 13:03:45.000000000 -0400
+--- gdm-2.19.1/configure.ac.security-tokens	2007-05-21 14:52:10.000000000 -0400
++++ gdm-2.19.1/configure.ac	2007-05-21 14:52:10.000000000 -0400
 @@ -20,6 +20,7 @@ LIBRSVG_REQUIRED=1.1.1
  LIBXML_REQUIRED=2.4.12
  LIBART_REQUIRED=2.3.11
@@ -18,13 +18,13 @@
  AC_SUBST(DAEMON_LIBS)
  
 --- /dev/null	2007-05-21 09:34:56.803421964 -0400
-+++ gdm-2.19.1/config/securitytokens.conf.in	2007-05-21 12:57:13.000000000 -0400
++++ gdm-2.19.1/config/securitytokens.conf.in	2007-05-21 14:52:10.000000000 -0400
 @@ -0,0 +1,3 @@
 +[SecurityTokens]
 +Enable=true
 +#Driver=@libdir@/pkcs11/libcoolkeypk11.so
 --- gdm-2.19.1/config/Makefile.am.security-tokens	2007-05-13 22:08:25.000000000 -0400
-+++ gdm-2.19.1/config/Makefile.am	2007-05-21 12:57:13.000000000 -0400
++++ gdm-2.19.1/config/Makefile.am	2007-05-21 14:52:10.000000000 -0400
 @@ -34,9 +34,11 @@ EXTRA_DIST = \
  	XKeepsCrashing \
  	gettextfoo.h \
@@ -87,8 +87,8 @@
  
  	$(INSTALL_SCRIPT) $(srcdir)/XKeepsCrashing $(DESTDIR)$(confdir)/XKeepsCrashing
  	$(INSTALL_SCRIPT) Xsession $(DESTDIR)$(confdir)/Xsession
---- gdm-2.19.1/config/gdm.conf.in.security-tokens	2007-05-21 12:57:13.000000000 -0400
-+++ gdm-2.19.1/config/gdm.conf.in	2007-05-21 12:57:13.000000000 -0400
+--- gdm-2.19.1/config/gdm.conf.in.security-tokens	2007-05-21 14:52:10.000000000 -0400
++++ gdm-2.19.1/config/gdm.conf.in	2007-05-21 14:52:10.000000000 -0400
 @@ -239,6 +239,10 @@ AlwaysLoginCurrentSession=true
  # kills it.  10 seconds should be long enough for X, but Xgl may need 20 or 25. 
  GdmXserverTimeout=10
@@ -100,8 +100,8 @@
  [security]
  # Allow root to login.  It makes sense to turn this off for kiosk use, when
  # you want to minimize the possibility of break in.
---- gdm-2.19.1/daemon/gdm.c.security-tokens	2007-05-21 12:57:13.000000000 -0400
-+++ gdm-2.19.1/daemon/gdm.c	2007-05-21 13:14:26.000000000 -0400
+--- gdm-2.19.1/daemon/gdm.c.security-tokens	2007-05-21 14:52:10.000000000 -0400
++++ gdm-2.19.1/daemon/gdm.c	2007-05-21 14:52:45.000000000 -0400
 @@ -71,6 +71,8 @@
  #include "cookie.h"
  #include "filecheck.h"
@@ -131,7 +131,7 @@
  	/* We always exit via exit (), and sadly we need to g_main_quit ()
  	 * at times not knowing if it's this main or a recursive one we're
  	 * quitting.
-@@ -4342,3 +4350,80 @@ gdm_handle_user_message (GdmConnection *
+@@ -4342,3 +4350,83 @@ gdm_handle_user_message (GdmConnection *
  		gdm_connection_close (conn);
  	}
  }
@@ -140,6 +140,9 @@
 +gdm_reset_local_displays (void)
 +{
 +    GSList *li;
++    GSList *displays;
++
++    displays = gdm_daemon_config_get_display_list ();
 +
 +    for (li = displays; li != NULL; li = li->next) {
 +          GdmDisplay *d = li->data;
@@ -213,7 +216,7 @@
 +}
 +
 --- /dev/null	2007-05-21 09:34:56.803421964 -0400
-+++ gdm-2.19.1/daemon/securitytokenmonitor.h	2007-05-21 12:57:13.000000000 -0400
++++ gdm-2.19.1/daemon/securitytokenmonitor.h	2007-05-21 14:52:10.000000000 -0400
 @@ -0,0 +1,84 @@
 +/* securitytokenmonitor.h - monitor for security token insertion and
 + *                          removal events
@@ -300,7 +303,7 @@
 +G_END_DECLS
 +#endif				/* SC_SECURITY_TOKEN_MONITOR_H */
 --- gdm-2.19.1/daemon/Makefile.am.security-tokens	2007-05-13 22:08:25.000000000 -0400
-+++ gdm-2.19.1/daemon/Makefile.am	2007-05-21 13:16:08.000000000 -0400
++++ gdm-2.19.1/daemon/Makefile.am	2007-05-21 14:52:10.000000000 -0400
 @@ -9,6 +9,7 @@ INCLUDES = \
  	-DAUTHDIR=\"$(authdir)\"			\
  	-DBINDIR=\"$(bindir)\"				\
@@ -321,7 +324,7 @@
  
  XDMCP_SOURCES =			\
 --- /dev/null	2007-05-21 09:34:56.803421964 -0400
-+++ gdm-2.19.1/daemon/securitytoken.h	2007-05-21 12:57:13.000000000 -0400
++++ gdm-2.19.1/daemon/securitytoken.h	2007-05-21 14:52:10.000000000 -0400
 @@ -0,0 +1,94 @@
 +/* securitytoken.h - api for reading and writing data to a security token 
 + *
@@ -418,7 +421,7 @@
 +G_END_DECLS
 +#endif				/* SC_SECURITY_TOKEN_H */
 --- /dev/null	2007-05-21 09:34:56.803421964 -0400
-+++ gdm-2.19.1/daemon/securitytokenmonitor.c	2007-05-21 12:57:13.000000000 -0400
++++ gdm-2.19.1/daemon/securitytokenmonitor.c	2007-05-21 14:52:10.000000000 -0400
 @@ -0,0 +1,1743 @@
 +/* securitytokenmonitor.c - monitor for security token insertion and
 + *                          removal events
@@ -2164,7 +2167,7 @@
 +}
 +#endif
 --- /dev/null	2007-05-21 09:34:56.803421964 -0400
-+++ gdm-2.19.1/daemon/securitytoken.c	2007-05-21 12:57:13.000000000 -0400
++++ gdm-2.19.1/daemon/securitytoken.c	2007-05-21 14:52:10.000000000 -0400
 @@ -0,0 +1,680 @@
 +/* securitytoken.c - security token
 + * 




More information about the fedora-extras-commits mailing list