This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU Guile".
http://git.savannah.gnu.org/cgit/guile.git/commit/?id=8904b7a9362ede0de324e55701d8ea1d018f8738 The branch, stable-2.0 has been updated via 8904b7a9362ede0de324e55701d8ea1d018f8738 (commit) from a4ecb437bc5b8bcdaad085dc413110db29591795 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 8904b7a9362ede0de324e55701d8ea1d018f8738 Author: Mark H Weaver <[email protected]> Date: Mon Nov 18 00:44:17 2013 -0500 Web: accept "UTC" as the zone offset in date headers. Fixes <http://bugs.gnu.org/14128>. Reported by Aleix Conchillo Flaqué <[email protected]>. * module/web/http.scm (parse-zone-offset): Accept "UTC". ----------------------------------------------------------------------- Summary of changes: module/web/http.scm | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/module/web/http.scm b/module/web/http.scm index af04259..6c9ab95 100644 --- a/module/web/http.scm +++ b/module/web/http.scm @@ -716,6 +716,8 @@ as an ordered alist." (cond ((string=? s "GMT") 0) + ((string=? s "UTC") + 0) ((string-match? s ".dddd") (let ((sign (case (string-ref s 0) ((#\+) +1) hooks/post-receive -- GNU Guile
