From: Brendan Cully Date: Thu, 24 May 2012 03:29:37 +0000 (-0400) Subject: Support passwords of up to 127 characters. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c649fea3ac529a60f14aaed28635a72489b842e0;p=mutt Support passwords of up to 127 characters. I received a report on IRC of a failure due to a 64-byte password. --- 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;