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”.
This commit is contained in:
Paul Eggert 2016-01-13 08:29:12 -08:00
parent 281344e606
commit ed1b2de50a

View file

@ -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))))))