diff options
author | Diogo Sousa <diogogsousa@gmail.com> | 2013-05-23 13:22:34 +0100 |
---|---|---|
committer | Diogo Sousa <diogogsousa@gmail.com> | 2013-05-23 13:22:34 +0100 |
commit | d3ce4f64f6c4e53348c73304f8f6e112401dc8b3 (patch) | |
tree | 9ce092e512962d86574e82cc68418c38b6522a9f /src | |
parent | fcdd85ae5e7d69a1890c81a4789423f5bbfb72ae (diff) |
Passing a password to the /server command was ignored because the login method
was not set.
Diffstat (limited to 'src')
-rw-r--r-- | src/common/outbound.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/outbound.c b/src/common/outbound.c index 255e809c..98384929 100644 --- a/src/common/outbound.c +++ b/src/common/outbound.c @@ -3249,6 +3249,7 @@ cmd_server (struct session *sess, char *tbuf, char *word[], char *word_eol[]) if (*pass) { safe_strcpy (serv->password, pass, sizeof (serv->password)); + serv->loginmethod = LOGIN_PASS; } #ifdef USE_OPENSSL serv->use_ssl = use_ssl; |