changeset 203:24dda549b0ce HEAD

typofix for parsing 'S' timeszone
author Timo Sirainen <tss@iki.fi>
date Mon, 09 Sep 2002 16:30:48 +0300
parents 70646fbf2c35
children f0f49949009b
files src/lib-mail/rfc822-date.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/lib-mail/rfc822-date.c	Mon Sep 09 16:22:27 2002 +0300
+++ b/src/lib-mail/rfc822-date.c	Mon Sep 09 16:30:48 2002 +0300
@@ -78,7 +78,7 @@
 
 		if (i_toupper(str[1]) == 'D')
 			return offset + 60;
-		if (i_toupper(str[1] == 'S'))
+		if (i_toupper(str[1]) == 'S')
 			return offset;
 	}