[yast-commit] r67561 - in /trunk/storage: package/yast2-storage.changes storage/src/modules/Storage.ycp
Author: aschnell Date: Mon Mar 5 11:34:35 2012 New Revision: 67561 URL: http://svn.opensuse.org/viewcvs/yast?rev=67561&view=rev Log: - allow equal-sign "=" in passwords (bnc#750306) Modified: trunk/storage/package/yast2-storage.changes trunk/storage/storage/src/modules/Storage.ycp Modified: trunk/storage/package/yast2-storage.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/package/yast2-storage.changes?rev=67561&r1=67560&r2=67561&view=diff ============================================================================== --- trunk/storage/package/yast2-storage.changes (original) +++ trunk/storage/package/yast2-storage.changes Mon Mar 5 11:34:35 2012 @@ -1,4 +1,9 @@ ------------------------------------------------------------------- +Mon Mar 05 11:30:46 CET 2012 - aschnell@suse.de + +- allow equal-sign "=" in passwords (bnc#750306) + +------------------------------------------------------------------- Wed Jan 25 12:20:53 CET 2012 - fehr@suse.de - allow resize and move of simple btrfs volumes if they are Modified: trunk/storage/storage/src/modules/Storage.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/storage/src/modules/Storage.ycp?rev=67561&r1=67560&r2=67561&view=diff ============================================================================== --- trunk/storage/storage/src/modules/Storage.ycp (original) +++ trunk/storage/storage/src/modules/Storage.ycp Mon Mar 5 11:34:35 2012 @@ -3593,12 +3593,12 @@ return false; } - string allowed_chars = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ#* ,.;:._-+!$%&/|\?{[()]}@^\\<>"; + string allowed_chars = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ#* ,.;:._-+=!$%&/|\?{[()]}@^\\<>"; if (findfirstnotof(pw1, allowed_chars) != nil) { // popup text Popup::Message(_("The password may only contain the following characters: -0..9, a..z, A..Z, and any of \"@#* ,.;:._-+!$%&/|\?{[()]}^\\<>\". +0..9, a..z, A..Z, and any of \"@#* ,.;:._-+=!$%&/|\?{[()]}^\\<>\". Try again.")); return false; } -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
aschnell@svn2.opensuse.org