From c5f3341de0fce4747d9231b0f74a3b35fa9f17a2 Mon Sep 17 00:00:00 2001 From: Brendan Cully Date: Wed, 23 May 2012 23:29:37 -0400 Subject: [PATCH] Support passwords of up to 127 characters. I received a report on IRC of a failure due to a 64-byte password. --- account.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account.h b/account.h index 8c9eb5c32..662fb32ef 100644 --- a/account.h +++ b/account.h @@ -43,7 +43,7 @@ typedef struct { char user[64]; char login[64]; - char pass[64]; + char pass[128]; char host[128]; unsigned short port; unsigned char type; -- 2.50.0