#32: 14-character maximum password length is incorrect
-----------------------+----------------------------------------------------
 Reporter:  parasytic  |       Owner:     
     Type:  defect     |      Status:  new
 Priority:  minor      |   Milestone:  4.9
Component:  bootdisk   |     Version:  4.8
 Keywords:             |  
-----------------------+----------------------------------------------------

Comment(by jjp3):

 Ok, this patch looks ok for you?

 Index: install.pl
 ===================================================================
 --- install.pl  (revisión: 3209)
 +++ install.pl  (copia de trabajo)
 @@ -128,10 +128,11 @@
      if ($is_linux) {
          while (1) {
              print "\n", $prompt;
 -            # Maximum length of Windows passwords is 14.  I think.
 -            $ret = read_secret (14);
 +            # Maximum length of Windows passwords.
 +            # See Ticket #32
 +            $ret = read_secret (50);
              print 'Re-enter to confirm: ';
 -            my $again = read_secret (14);
 +            my $again = read_secret (50);
              $ret eq $again
                  and last;
              print "*** Passwords do not match!  Try again.\n";

-- 
Ticket URL: <http://sourceforge.net/apps/trac/unattended/ticket/32#comment:1>
Unattended <https://apps.sourceforge.net/trac/unattended/>
This is a system for fully automating the installation of Windows 2000 
Professional and Server, Windows XP, and Windows Server 2003.
------------------------------------------------------------------------------

_______________________________________________
unattended-devel mailing list
unattended-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-devel

Reply via email to