diff options
-rw-r--r-- | module/web/http.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/web/http.scm b/module/web/http.scm index 70db81335..e8765f32d 100644 --- a/module/web/http.scm +++ b/module/web/http.scm @@ -784,7 +784,7 @@ ordered alist." date (time-tai->date (date->time-tai date) 0)))) (display (case (date-week-day date) - ((0) "Sun, ") ((2) "Mon, ") ((2) "Tue, ") + ((0) "Sun, ") ((1) "Mon, ") ((2) "Tue, ") ((3) "Wed, ") ((4) "Thu, ") ((5) "Fri, ") ((6) "Sat, ") (else (error "bad date" date))) port) |