don't forget to call mktime() so we have a valid week and year day (Bug report by...
authorAlfons Hoogervorst <alfons@proteus.demon.nl>
Mon, 20 May 2002 17:31:58 +0000 (17:31 +0000)
committerAlfons Hoogervorst <alfons@proteus.demon.nl>
Mon, 20 May 2002 17:31:58 +0000 (17:31 +0000)
ChangeLog.claws
configure.in
src/procheader.c

index 63ca6d41f481bdebcf98bccd2070bac402552c36..8ab3fab72656692847d0ac85d8d026814ac3932f 100644 (file)
@@ -1,3 +1,10 @@
+2002-05-20 [alfons]    0.7.6claws8
+
+       * src/procheader.c
+               don't forget to call mktime() so we have a valid week 
+               and year day
+               (Bug report by Roger Sondermann <mail@jumaros.de>)
+
 2002-05-20 [paul]      0.7.6claws7
 
        * src/html.c
index d924e5c23eb91571294bbf7b7c9efd3847e0bdbd..0eae5a338759bd665247991c557bf23b362d863c 100644 (file)
@@ -8,7 +8,7 @@ MINOR_VERSION=7
 MICRO_VERSION=6
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws7
+EXTRA_VERSION=claws8
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
index 36084cc2cfe04db94ea1d2ac37265849fb48f9b3..8b0e85e5a98621b8328899d7f8a5ad81dcc10c26 100644 (file)
@@ -787,6 +787,8 @@ gboolean procheader_date_parse_to_tm(const gchar *src, struct tm *t, char *zone)
        t->tm_yday = 0;
        t->tm_isdst = -1;
 
+       mktime(t);
+
        return TRUE;
 }