
alo at alobbs
Mar 31, 2006, 5:25 PM
Post #1 of 1
(66 views)
Permalink
|
|
r239 - in cherokee: . cherokee
|
|
Author: alo Date: 2006-04-01 02:25:40 +0200 (Sat, 01 Apr 2006) New Revision: 239 Modified: cherokee/ChangeLog cherokee/cherokee/handler_error.c Log: Modified: cherokee/ChangeLog =================================================================== --- cherokee/ChangeLog 2006-03-30 23:35:50 UTC (rev 238) +++ cherokee/ChangeLog 2006-04-01 00:25:40 UTC (rev 239) @@ -1,3 +1,8 @@ +2006-04-01 Alvaro Lopez Ortega <alvaro at alobbs.com> + + * cherokee/handler_error.c (build_hardcoded_response_page): It was + missing a break. Patch by Philip Pemberton <philpem at dsl.pipex.com> + 2006-03-31 Alvaro Lopez Ortega <alvaro at alobbs.com> * cherokee.spec.in: Fixed extra space. Reported by Modified: cherokee/cherokee/handler_error.c =================================================================== --- cherokee/cherokee/handler_error.c 2006-03-30 23:35:50 UTC (rev 238) +++ cherokee/cherokee/handler_error.c 2006-04-01 00:25:40 UTC (rev 239) @@ -126,6 +126,7 @@ "This server could not verify that you are authorized to access the document " "requested. Either you supplied the wrong credentials (e.g., bad password), " "or your browser doesn't understand how to supply the credentials required."); + break; case http_upgrade_required: cherokee_buffer_add_str (buffer, "The requested resource can only be retrieved using SSL. The server is "
|