mirror of
http://galexander.org/git/simplesshd.git
synced 2024-11-14 02:59:05 +00:00
After a warning audit, fix the one warning that is my fault. The other
warnings all come from dropbear being sloppy about char* vs unsigned char*. I've got a variety of opinions about what should be done about it but I'm not going to interfere with it because they'll surely fix it upstream sooner or later.
This commit is contained in:
parent
cf41fb58d0
commit
ecf6efb562
@ -101,8 +101,7 @@ void svr_auth_password(int valid_user) {
|
||||
|
||||
if (testcrypt == NULL) {
|
||||
/* crypt() with an invalid salt like "!!" */
|
||||
dropbear_log(LOG_WARNING, "No password received from ssh client",
|
||||
ses.authstate.pw_name);
|
||||
dropbear_log(LOG_WARNING, "No password received from ssh client");
|
||||
send_msg_userauth_failure(0, 1);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user