From: Kevin McCarthy Date: Sat, 24 Mar 2018 22:10:13 +0000 (-0700) Subject: Increase account.user/login size to 128. X-Git-Tag: neomutt-20180512~84^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4a4aad531465e15c14ab2f83164a62a5cb63c5eb;p=neomutt 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/conn/account.h b/conn/account.h index 467f9664a..0c0ff4392 100644 --- a/conn/account.h +++ b/conn/account.h @@ -28,8 +28,8 @@ */ struct Account { - char user[64]; - char login[64]; + char user[128]; + char login[128]; char pass[256]; char host[128]; unsigned short port;