From: Paul Eggert Date: Wed, 13 Jan 2016 16:29:12 +0000 (-0800) Subject: Fix NNTP NEWGROUPS off-by-a-few-hours bug X-Git-Tag: emacs-25.0.90~182 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ed1b2de50ae87d8b2f9882be7576fbe5097df65b;p=emacs.git Fix NNTP NEWGROUPS off-by-a-few-hours bug * lisp/gnus/nntp.el (nntp-request-newgroups): Format string in Universal Time, since we’re telling the server “GMT”. --- diff --git a/lisp/gnus/nntp.el b/lisp/gnus/nntp.el index 0e10dfdb8be..0006ef9f5cf 100644 --- a/lisp/gnus/nntp.el +++ b/lisp/gnus/nntp.el @@ -1130,7 +1130,7 @@ command whose response triggered the error." (prog1 (nntp-send-command "^\\.\r?\n" "NEWGROUPS" - (format-time-string "%y%m%d %H%M%S" time) + (format-time-string "%y%m%d %H%M%S" time t) "GMT") (nntp-decode-text))))))