]> granicus.if.org Git - neomutt/commitdiff
Increase account.user/login size to 128.
authorKevin McCarthy <kevin@8t8.us>
Sat, 24 Mar 2018 22:10:13 +0000 (15:10 -0700)
committerRichard Russon <rich@flatcap.org>
Sun, 25 Mar 2018 22:57:25 +0000 (23:57 +0100)
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.

conn/account.h

index 467f9664a09ac436159654399dd22419d3b942c1..0c0ff43929f23893451197674c9c14f3a1673802 100644 (file)
@@ -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;