aboutsummaryrefslogtreecommitdiffstats
path: root/camel/broken-date-parser.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-09-28 04:20:08 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-09-28 04:20:08 +0800
commit7ed66fac42704097175f778660e391e86cc6d55d (patch)
treef77d33fb9bec1c329e30075b46aa19354156c76f /camel/broken-date-parser.c
parent5960e962688cb6ff5cd04b1391365469da42efaf (diff)
downloadgsoc2013-evolution-7ed66fac42704097175f778660e391e86cc6d55d.tar
gsoc2013-evolution-7ed66fac42704097175f778660e391e86cc6d55d.tar.gz
gsoc2013-evolution-7ed66fac42704097175f778660e391e86cc6d55d.tar.bz2
gsoc2013-evolution-7ed66fac42704097175f778660e391e86cc6d55d.tar.lz
gsoc2013-evolution-7ed66fac42704097175f778660e391e86cc6d55d.tar.xz
gsoc2013-evolution-7ed66fac42704097175f778660e391e86cc6d55d.tar.zst
gsoc2013-evolution-7ed66fac42704097175f778660e391e86cc6d55d.zip
New function to decode the INTERNALDATE response from an IMAP server so we
2002-09-27 Jeffrey Stedfast <fejj@ximian.com> * providers/imap/camel-imap-folder.c (decode_internaldate): New function to decode the INTERNALDATE response from an IMAP server so we don't have to use my broken-date-parser routines. 2002-09-27 Jeffrey Stedfast <fejj@ximian.com> * providers/imap/camel-imap-store.c (connect_to_server): NULL-check the streams before unreffing them in the case of a failure during ssl negotiations. * camel-tcp-stream-ssl.c (camel_tcp_stream_ssl_enable_ssl): Check SSL_ResetHandshake() for errors. Also force a handshake after we've reset the handshake state on the socket. svn path=/trunk/; revision=18252
Diffstat (limited to 'camel/broken-date-parser.c')
-rw-r--r--camel/broken-date-parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/broken-date-parser.c b/camel/broken-date-parser.c
index cba19208b4..238665cb93 100644
--- a/camel/broken-date-parser.c
+++ b/camel/broken-date-parser.c
@@ -406,7 +406,7 @@ decode_broken_date (struct _date_token *tokens, int *tzone)
time = e_mktime_utc (&tm);
- /* t is now GMT of the time we want, but not offset by the timezone ... */
+ /* time is now GMT of the time we want, but not offset by the timezone ... */
/* this should convert the time to the GMT equiv time */
time -= ((offset / 100) * 60 * 60) + (offset % 100) * 60;