upas/fs: fix truncation of plumb date

the new date format introduced by the previous commit;
using numeric timezone offsets; needs one character more,
so increase the date format buffer to 31 characters.
This commit is contained in:
cinap_lenrek 2020-10-11 14:59:49 +02:00
parent c7598b18f3
commit 3e880cd07d

View file

@ -1547,7 +1547,7 @@ myplumbsend(int fd, Plumbmsg *m)
static void
mailplumb(Mailbox *mb, Message *m)
{
char buf[256], dbuf[SHA1dlen*2 + 1], len[10], date[30], *from, *subject;
char buf[256], dbuf[SHA1dlen*2 + 1], len[10], date[32], *from, *subject;
int ai;
Plumbmsg p;
Plumbattr a[7];