diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-07-01 06:48:21 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-07-01 06:48:21 +0800 |
commit | 6ae3f35ec34b4b2c35c4500a64651ac8874cad0e (patch) | |
tree | 14c67fb50084174f974f595dc99d1f5415e7309f | |
parent | 68670a0f4280c6ee58e4242243086ad57a8fb000 (diff) | |
download | gsoc2013-evolution-6ae3f35ec34b4b2c35c4500a64651ac8874cad0e.tar gsoc2013-evolution-6ae3f35ec34b4b2c35c4500a64651ac8874cad0e.tar.gz gsoc2013-evolution-6ae3f35ec34b4b2c35c4500a64651ac8874cad0e.tar.bz2 gsoc2013-evolution-6ae3f35ec34b4b2c35c4500a64651ac8874cad0e.tar.lz gsoc2013-evolution-6ae3f35ec34b4b2c35c4500a64651ac8874cad0e.tar.xz gsoc2013-evolution-6ae3f35ec34b4b2c35c4500a64651ac8874cad0e.tar.zst gsoc2013-evolution-6ae3f35ec34b4b2c35c4500a64651ac8874cad0e.zip |
oops, forgot I had blocked that code from running :)
svn path=/trunk/; revision=3837
-rw-r--r-- | camel/camel-mime-utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c index fbae08a946..ccf13b4097 100644 --- a/camel/camel-mime-utils.c +++ b/camel/camel-mime-utils.c @@ -2258,11 +2258,11 @@ header_decode_date(const char *in, int *saveoffset) w(g_warning("day not followed by ',' its probably a broken mail client, so we'll ignore its date entirely")); printf ("Giving it one last chance...\n"); newdate = parse_date (in); - if (FALSE && newdate) { + if (newdate) { printf ("Got: %s\n", newdate); if (saveoffset) *saveoffset = 0; - t = header_decode_date (newdate, NULL); + t = header_decode_date (newdate, NULL); g_free (newdate); } |