[yast-commit] r67330 - in /trunk/pam: VERSION package/yast2-pam.changes src/PamSettings.ycp
Author: jsuchome Date: Tue Jan 31 15:47:36 2012 New Revision: 67330 URL: http://svn.opensuse.org/viewcvs/yast?rev=67330&view=rev Log: - do not use MD5 as fallback (bnc#743715) - 2.22.1 Modified: trunk/pam/VERSION trunk/pam/package/yast2-pam.changes trunk/pam/src/PamSettings.ycp Modified: trunk/pam/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/pam/VERSION?rev=67330&r1=67329&r2=67330&view=diff ============================================================================== --- trunk/pam/VERSION (original) +++ trunk/pam/VERSION Tue Jan 31 15:47:36 2012 @@ -1 +1 @@ -2.22.0 +2.22.1 Modified: trunk/pam/package/yast2-pam.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/pam/package/yast2-pam.changes?rev=67330&r1=67329&r2=67330&view=diff ============================================================================== --- trunk/pam/package/yast2-pam.changes (original) +++ trunk/pam/package/yast2-pam.changes Tue Jan 31 15:47:36 2012 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Tue Jan 31 15:46:30 CET 2012 - jsuchome@suse.cz + +- do not use MD5 as fallback (bnc#743715) +- 2.22.1 + +------------------------------------------------------------------- Wed Jan 25 08:46:17 CET 2012 - jsuchome@suse.cz - confirmed license Modified: trunk/pam/src/PamSettings.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/pam/src/PamSettings.ycp?rev=67330&r1=67329&r2=67330&view=diff ============================================================================== --- trunk/pam/src/PamSettings.ycp (original) +++ trunk/pam/src/PamSettings.ycp Tue Jan 31 15:47:36 2012 @@ -50,8 +50,8 @@ */ global define string GetHashMethod () { string m = (string) SCR::Read (.etc.default.passwd.crypt); - if (m == nil || m == "") - m = "md5"; + if (m == nil) + m = ""; return m; } -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
jsuchome@svn2.opensuse.org