]> granicus.if.org Git - mutt/commitdiff
Increase account.user/login size to 128.
authorKevin McCarthy <kevin@8t8.us>
Sat, 24 Mar 2018 22:10:13 +0000 (15:10 -0700)
committerKevin McCarthy <kevin@8t8.us>
Sat, 24 Mar 2018 22:10:13 +0000 (15:10 -0700)
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.

account.h

index bcd02f04dee27c5d1ad0458012220155231bd875..f4d2e4ed299433506b4fae74371896fa3a5f51cc 100644 (file)
--- 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;