]> granicus.if.org Git - neomutt/commitdiff
Support passwords of up to 127 characters.
authorBrendan Cully <brendan@kublai.com>
Thu, 24 May 2012 03:29:37 +0000 (23:29 -0400)
committerBrendan Cully <brendan@kublai.com>
Thu, 24 May 2012 03:29:37 +0000 (23:29 -0400)
I received a report on IRC of a failure due to a 64-byte password.

account.h

index 8c9eb5c32ae0dd110e758a213fe0c27a92c24703..662fb32efdb571c3ec3ba9e37d0e1c3640ed9425 100644 (file)
--- 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;