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.
master
Greg Alexander 3 years ago
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…
Cancel
Save