From 2afc5d6924e5991820150de1ab262f16e69d477c Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Fri, 30 Nov 2001 09:29:15 +0000 Subject: [PATCH] - Fix for bug 8909 and 12680 (timezone problem) --- win32/sendmail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/sendmail.c b/win32/sendmail.c index 0e3ddb34e8..22127faf7f 100644 --- a/win32/sendmail.c +++ b/win32/sendmail.c @@ -356,7 +356,7 @@ int PostHeader(char *RPath, char *Subject, char *mailTo, char *xheaders) tm->tm_hour, tm->tm_min, tm->tm_sec, - (_timezone > 0) ? "+" : (_timezone < 0) ? "-" : "", + (_timezone <= 0) ? "+" : (_timezone > 0) ? "-" : "", zoneh, zonem); } -- 2.50.1