aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-06-29 06:09:22 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-06-29 06:09:22 +0000
commiteb4ad7a7406af080c03c6af88430e8cd31e51225 (patch)
tree3cfaa31eb6e10f6e601aa79577f1cd4e6cf33b4e /src
parent524170a27870e583b8077bc4a35cfd0721458f18 (diff)
reverted the previous change of Date: header.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@383 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src')
-rw-r--r--src/utils.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/utils.c b/src/utils.c
index 0e544f1a..f5ba1125 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -2632,9 +2632,11 @@ gchar *get_outgoing_rfc2822_str(FILE *fp)
if (fgets(buf, sizeof(buf), fp) == NULL)
break;
}
+#if 0
} else if (!g_ascii_strncasecmp(buf, "Date:", 5)) {
get_rfc822_date(buf, sizeof(buf));
g_string_append_printf(str, "Date: %s\r\n", buf);
+#endif
} else {
g_string_append(str, buf);
g_string_append(str, "\r\n");