From 89d45e850725e232ae685803ee476da5b046c2b0 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Mon, 12 Mar 2012 16:58:15 +0100 Subject: [PATCH] web http: fix Ma -> Mar * module/web/http.scm (write-date): Fix serialization of Mar. Oops. --- module/web/http.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/web/http.scm b/module/web/http.scm index c15bc3ed7..879923f81 100644 --- a/module/web/http.scm +++ b/module/web/http.scm @@ -1,6 +1,6 @@ ;;; HTTP messages -;; Copyright (C) 2010, 2011 Free Software Foundation, Inc. +;; Copyright (C) 2010, 2011, 2012 Free Software Foundation, Inc. ;; This library is free software; you can redistribute it and/or ;; modify it under the terms of the GNU Lesser General Public @@ -790,7 +790,7 @@ ordered alist." port) (display-digits (date-day date) 2 port) (display (case (date-month date) - ((1) " Jan ") ((2) " Feb ") ((3) " Ma ") + ((1) " Jan ") ((2) " Feb ") ((3) " Mar ") ((4) " Apr ") ((5) " May ") ((6) " Jun ") ((7) " Jul ") ((8) " Aug ") ((9) " Sep ") ((10) " Oct ") ((11) " Nov ") ((12) " Dec ") -- 2.20.1