about summary refs log tree commit diff
path: root/archive.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-04-13 12:43:56 -0400
committerJune McEnroe <june@causal.agency>2020-04-13 12:43:56 -0400
commitd031cf5f00de4bf6b33396f1a448833a6de33c5f (patch)
treeaa80e5cda92bfc2d3338f7020a8ab75ca1369cf5 /archive.h
parentRework path functions again (diff)
downloadbubger-d031cf5f00de4bf6b33396f1a448833a6de33c5f.tar.gz
bubger-d031cf5f00de4bf6b33396f1a448833a6de33c5f.zip
Use UTC date everywhere
I thought I could preserve the original time zone but it turns out that
libc is just too shit to do that.
Diffstat (limited to 'archive.h')
-rw-r--r--archive.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/archive.h b/archive.h
index 6342236..0dac623 100644
--- a/archive.h
+++ b/archive.h
@@ -40,8 +40,7 @@ struct AddressList {
 };
 
 struct Envelope {
-	time_t utc;
-	struct tm date;
+	time_t date;
 	char *subject;
 	struct Address from, sender, replyTo;
 	struct AddressList to, cc, bcc;