summaryrefslogtreecommitdiffstats
path: root/imap
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2018-09-22 09:53:55 -0700
committerKevin McCarthy <kevin@8t8.us>2018-09-22 09:53:55 -0700
commitf9293d646485137c7d0d554bad29ca4aca8fb1bb (patch)
tree7489150464dbf0e0fe348c8fb9f77ce1b21e953b /imap
parentc7695a409d815c577e10e86e5c9b47d02503145a (diff)
Increase user/pass field sizes in auth_login.
account.pass was previously increased to 256 in cd421c13. Also, the buf should be bigger than the user+pass+"LOGIN", so bump it up too.
Diffstat (limited to 'imap')
-rw-r--r--imap/auth_login.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/imap/auth_login.c b/imap/auth_login.c
index 3e40d4d6..00651130 100644
--- a/imap/auth_login.c
+++ b/imap/auth_login.c
@@ -29,8 +29,8 @@
/* imap_auth_login: Plain LOGIN support */
imap_auth_res_t imap_auth_login (IMAP_DATA* idata, const char* method)
{
- char q_user[SHORT_STRING], q_pass[SHORT_STRING];
- char buf[STRING];
+ char q_user[STRING], q_pass[STRING];
+ char buf[LONG_STRING];
int rc;
if (mutt_bit_isset (idata->capabilities, LOGINDISABLED))