diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-17 12:00:18 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-17 12:00:18 +0100 |
commit | 7494858834996cc9f83ccc7ec23a9c58b42371bb (patch) | |
tree | a6adaf299e59b8c08b8558dcf36a2eb88d0703a3 | |
parent | 7b53dccb0681cb9db08ab74f909c2d6d59769b09 (diff) |
com_mailsource: increased buffer size for 'subj' to 120
-rw-r--r-- | FICS/comproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/comproc.c b/FICS/comproc.c index e515575..28a99bc 100644 --- a/FICS/comproc.c +++ b/FICS/comproc.c @@ -1476,7 +1476,7 @@ com_mailsource(int p, param_list param) char *buffer[1000]; char *iwant; char fname[MAX_FILENAME_SIZE]; - char subj[81]; + char subj[120]; int count; static char nullify = '\0'; |