From: Kevin McCarthy Date: Sat, 24 Mar 2018 22:10:13 +0000 (-0700) Subject: Increase account.user/login size to 128. X-Git-Tag: mutt-1-10-rel~37 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ed3f8b6a1642b120d4896e598f7f105c93227044;p=mutt Increase account.user/login size to 128. Like the pass field in commit 52949004, the existing size was insufficient for the reporter of issue #18. For now, just bump up the size, but I'll move up looking into making these dynamically sized. --- diff --git a/account.h b/account.h index bcd02f04..f4d2e4ed 100644 --- a/account.h +++ b/account.h @@ -41,8 +41,8 @@ enum typedef struct { - char user[64]; - char login[64]; + char user[128]; + char login[128]; char pass[256]; char host[128]; unsigned short port;