diff options
author | June McEnroe <june@causal.agency> | 2020-04-13 12:43:56 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-04-13 12:43:56 -0400 |
commit | d031cf5f00de4bf6b33396f1a448833a6de33c5f (patch) | |
tree | aa80e5cda92bfc2d3338f7020a8ab75ca1369cf5 /archive.h | |
parent | Rework path functions again (diff) | |
download | bubger-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 '')
-rw-r--r-- | archive.h | 3 |
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; |