summary refs log tree commit diff stats
path: root/src/common/outbound.c
diff options
context:
space:
mode:
authorDiogo Sousa <diogogsousa@gmail.com>2013-05-23 13:22:34 +0100
committerDiogo Sousa <diogogsousa@gmail.com>2013-05-23 13:22:34 +0100
commitd3ce4f64f6c4e53348c73304f8f6e112401dc8b3 (patch)
tree9ce092e512962d86574e82cc68418c38b6522a9f /src/common/outbound.c
parentfcdd85ae5e7d69a1890c81a4789423f5bbfb72ae (diff)
Passing a password to the /server command was ignored because the login method
was not set.
Diffstat (limited to 'src/common/outbound.c')
-rw-r--r--src/common/outbound.c1
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;