- Fix problem in patch for bug 430525
This commit is contained in:
parent
cd9fb5d485
commit
50aef86461
@ -1,19 +1,24 @@
|
||||
diff -up gnome-keyring-2.21.5/pam/gkr-pam-module.c.dont-ask-for-password gnome-keyring-2.21.5/pam/gkr-pam-module.c
|
||||
--- gnome-keyring-2.21.5/pam/gkr-pam-module.c.dont-ask-for-password 2008-01-28 11:53:45.000000000 -0500
|
||||
+++ gnome-keyring-2.21.5/pam/gkr-pam-module.c 2008-01-28 11:53:55.000000000 -0500
|
||||
@@ -775,6 +775,7 @@ pam_sm_authenticate (pam_handle_t *ph, i
|
||||
|
||||
--- gnome-keyring-2.21.5/pam/gkr-pam-module.c.dont-ask-for-password 2007-12-01 16:28:35.000000000 -0500
|
||||
+++ gnome-keyring-2.21.5/pam/gkr-pam-module.c 2008-02-06 14:02:16.000000000 -0500
|
||||
@@ -776,6 +776,7 @@ pam_sm_authenticate (pam_handle_t *ph, i
|
||||
/* Look up the password */
|
||||
ret = pam_get_item (ph, PAM_AUTHTOK, (const void**)&password);
|
||||
+#if 0
|
||||
if (ret != PAM_SUCCESS || password == NULL) {
|
||||
+#ifdef GKR_SHOULD_WRONGLY_ASK_FOR_PASSWORD
|
||||
ret = prompt_password (ph);
|
||||
if (ret != PAM_SUCCESS) {
|
||||
@@ -789,6 +790,7 @@ pam_sm_authenticate (pam_handle_t *ph, i
|
||||
syslog (GKR_LOG_ERR, "gkr-pam: couldn't get the password from user: %s",
|
||||
@@ -788,9 +789,11 @@ pam_sm_authenticate (pam_handle_t *ph, i
|
||||
ret == PAM_SUCCESS ? "password was null" : pam_strerror (ph, ret));
|
||||
return PAM_AUTHTOK_RECOVER_ERR;
|
||||
}
|
||||
}
|
||||
+#else
|
||||
+ return PAM_SUCCESS;
|
||||
+#endif
|
||||
}
|
||||
|
||||
|
||||
-
|
||||
started_daemon = 0;
|
||||
|
||||
/* Should we start the daemon? */
|
||||
|
@ -8,7 +8,7 @@
|
||||
Summary: A framework for managing user passwords and other secrets
|
||||
Name: gnome-keyring
|
||||
Version: 2.21.90
|
||||
Release: 1%{?dist}
|
||||
Release: 2%{?dist}
|
||||
License: GPLv2+ and LGPLv2+
|
||||
Group: System Environment/Libraries
|
||||
Source: http://download.gnome.org/sources/gnome-keyring/2.21/gnome-keyring-%{version}.tar.bz2
|
||||
@ -139,6 +139,9 @@ fi
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Feb 6 2008 Ray Strode <rstrode@redhat.com> - 2.21.90-2
|
||||
- Fix problem in patch for bug 430525
|
||||
|
||||
* Tue Jan 29 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.90-1
|
||||
- Update to 2.21.90
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user