From: Dan Harkless Date: Thu, 13 May 1999 01:13:58 +0000 (+0000) Subject: Fix a buffer overrun that caused packf -mbox to mess up on X-Git-Tag: nmh-1_0~193 X-Git-Url: http://git.marmaro.de/?p=mmh;a=commitdiff_plain;h=ebe7903c571e88539acf6bfb636f7d212f279022 Fix a buffer overrun that caused packf -mbox to mess up on Return-Path: lines. From Kimmo Suominen --- diff --git a/zotnet/tws/dtime.c b/zotnet/tws/dtime.c index 7e791f3..b4d2eec 100644 --- a/zotnet/tws/dtime.c +++ b/zotnet/tws/dtime.c @@ -247,7 +247,7 @@ dgmtime (time_t *clock) char * dctime (struct tws *tw) { - static char buffer[25]; + static char buffer[26]; if (!tw) return NULL;