From: Thomas Roessler Date: Sun, 28 Oct 2001 09:18:19 +0000 (+0000) Subject: GMT's too clumsy. Just take G. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d8e7ba9f06b4ed41d760d2bdd2f3378cb32b55c2;p=neomutt GMT's too clumsy. Just take G. --- diff --git a/sendlib.c b/sendlib.c index dab6cf188..87b945224 100644 --- a/sendlib.c +++ b/sendlib.c @@ -1745,7 +1745,7 @@ char *mutt_gen_msgid (void) if(!(fqdn = mutt_fqdn(0))) fqdn = NONULL(Hostname); - snprintf (buf, sizeof (buf), "<%d%02d%02d%02d%02d%02dGMT.%c%d@%s>", + snprintf (buf, sizeof (buf), "<%d%02d%02d%02d%02d%02dG.%c%d@%s>", tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec, MsgIdPfx, getpid (), fqdn); MsgIdPfx = (MsgIdPfx == 'Z') ? 'A' : MsgIdPfx + 1;