From ed3f8b6a1642b120d4896e598f7f105c93227044 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Sat, 24 Mar 2018 15:10:13 -0700 Subject: [PATCH] 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. --- account.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.40.0