From b0893bd850aaf28d0e6eaeb856309ff59c3d9eff Mon Sep 17 00:00:00 2001 From: kwm Date: Sat, 15 Jan 2011 18:20:28 +0000 Subject: Update to 2.91.5. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@15029 df743ca5-7f9a-e211-a948-0013205c9059 --- x11/gnome-shell/files/patch-src_gdmuser_gdm-user-manager.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 x11/gnome-shell/files/patch-src_gdmuser_gdm-user-manager.c (limited to 'x11/gnome-shell/files') diff --git a/x11/gnome-shell/files/patch-src_gdmuser_gdm-user-manager.c b/x11/gnome-shell/files/patch-src_gdmuser_gdm-user-manager.c new file mode 100644 index 000000000..10a75f2bd --- /dev/null +++ b/x11/gnome-shell/files/patch-src_gdmuser_gdm-user-manager.c @@ -0,0 +1,14 @@ +--- src/gdmuser/gdm-user-manager.c.orig 2010-12-08 21:06:50.000000000 +0000 ++++ src/gdmuser/gdm-user-manager.c 2011-01-15 18:39:35.000000000 +0000 +@@ -2230,9 +2230,9 @@ reload_passwd_file (GHashTable *valid_sh + + g_debug ("GdmUserManager: include_all is TRUE"); + +- for (pwent = fgetpwent (fp); ++ for (pwent = getpwent (); + pwent != NULL; +- pwent = fgetpwent (fp)) { ++ pwent = getpwent ()) { + + /* Skip users below MinimalUID... */ + if (pwent->pw_uid < FALLBACK_MINIMAL_UID) { -- cgit