Mercurial > dropbear
changeset 732:2e5f2bc60e40
Try password before interactive - bit of a hack
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Mon, 01 Apr 2013 22:26:24 +0800 |
parents | 9a5438271556 |
children | 70811267715c |
files | cli-auth.c |
diffstat | 1 files changed, 10 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- a/cli-auth.c Mon Apr 01 00:07:26 2013 +0800 +++ b/cli-auth.c Mon Apr 01 22:26:24 2013 +0800 @@ -257,6 +257,16 @@ } #endif +#ifdef ENABLE_CLI_PASSWORD_AUTH + if (ses.keys->trans.algo_crypt->cipherdesc == NULL) { + fprintf(stderr, "Sorry, I won't let you use password auth unencrypted.\n"); + } else if (!finished && ses.authstate.authtypes & AUTH_TYPE_PASSWORD) { + cli_auth_password(); + finished = 1; + cli_ses.lastauthtype = AUTH_TYPE_PASSWORD; + } +#endif + #ifdef ENABLE_CLI_INTERACT_AUTH if (ses.keys->trans.algo_crypt->cipherdesc == NULL) { fprintf(stderr, "Sorry, I won't let you use interactive auth unencrypted.\n"); @@ -271,16 +281,6 @@ } #endif -#ifdef ENABLE_CLI_PASSWORD_AUTH - if (ses.keys->trans.algo_crypt->cipherdesc == NULL) { - fprintf(stderr, "Sorry, I won't let you use password auth unencrypted.\n"); - } else if (!finished && ses.authstate.authtypes & AUTH_TYPE_PASSWORD) { - cli_auth_password(); - finished = 1; - cli_ses.lastauthtype = AUTH_TYPE_PASSWORD; - } -#endif - TRACE(("cli_auth_try lastauthtype %d", cli_ses.lastauthtype)) if (!finished) {