From c649fea3ac529a60f14aaed28635a72489b842e0 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 8c9eb5c3..662fb32e 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.40.0