aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-mime-utils.c')
-rw-r--r--camel/camel-mime-utils.c4
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);
}