[dovecot-cvs] dovecot/src/lib-mail message-date.c,1.1,1.2

cras at procontrol.fi cras at procontrol.fi
Thu Jan 9 16:02:58 EET 2003


Update of /home/cvs/dovecot/src/lib-mail
In directory danu:/tmp/cvs-serv18244/lib-mail

Modified Files:
	message-date.c 
Log Message:
Timezone parsing was broken.



Index: message-date.c
===================================================================
RCS file: /home/cvs/dovecot/src/lib-mail/message-date.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- message-date.c	5 Jan 2003 13:09:52 -0000	1.1
+++ message-date.c	9 Jan 2003 14:02:55 -0000	1.2
@@ -190,6 +190,8 @@
 		    !i_isdigit(value[0]) || !i_isdigit(value[1]))
 			return FALSE;
 		tm.tm_sec = (value[0]-'0') * 10 + (value[1]-'0');
+
+		token = next_token(ctx, &value, &len);
 	}
 
 	/* timezone */




More information about the dovecot-cvs mailing list