mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-10 16:43:35 +02:00
2020-11-29 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdadmin(1) that caused new passwords to be truncated to 16 characters. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -73,7 +73,7 @@ Login::Login(QString *username,QString *password,QWidget *parent)
|
||||
//
|
||||
login_name_edit=new QLineEdit(this);
|
||||
login_name_edit->setGeometry(100,10,100,19);
|
||||
login_name_edit->setMaxLength(16);
|
||||
login_name_edit->setMaxLength(RD_MAX_PASSWORD_LENGTH);
|
||||
login_name_edit->setFocus();
|
||||
login_name_edit->setValidator(validator);
|
||||
QLabel *login_name_label=new QLabel(login_name_edit,tr("User &Name:"),this);
|
||||
|
Reference in New Issue
Block a user