From ebe7903c571e88539acf6bfb636f7d212f279022 Mon Sep 17 00:00:00 2001 From: Dan Harkless Date: Thu, 13 May 1999 01:13:58 +0000 Subject: [PATCH] Fix a buffer overrun that caused packf -mbox to mess up on Return-Path: lines. From Kimmo Suominen --- zotnet/tws/dtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 1.7.10.4