Skip to content

Commit

Permalink
mexport: use UTC timestamp in the postmark line
Browse files Browse the repository at this point in the history
  • Loading branch information
leahneukirchen committed May 9, 2021
1 parent ce90060 commit c4008e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mexport.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export(char *file)
char *line = 0;
size_t linelen = 0;

printf("From %s %s", from, ctime(&date));
printf("From %s %s", from, asctime(gmtime(&date)));

int in_header = 1;
int final_nl = 0;
Expand Down

0 comments on commit c4008e4

Please sign in to comment.