--------------------- PatchSet 11248 Date: 2007/02/07 00:01:10 Author: hno Branch: HEAD Tag: (none) Log: Fix a typo in the date format for Tuesdays, introduced in the HTTP parser/client side tidyups 2007/01/21 Members: lib/rfc1123.c:1.39->1.40 Index: squid/lib/rfc1123.c =================================================================== RCS file: /cvsroot/squid/squid/lib/rfc1123.c,v retrieving revision 1.39 retrieving revision 1.40 diff -u -r1.39 -r1.40 --- squid/lib/rfc1123.c 26 Jan 2007 01:27:50 -0000 1.39 +++ squid/lib/rfc1123.c 7 Feb 2007 00:01:10 -0000 1.40 @@ -1,6 +1,6 @@ /* - * $Id: rfc1123.c,v 1.39 2007/01/26 01:27:50 hno Exp $ + * $Id: rfc1123.c,v 1.40 2007/02/07 00:01:10 hno Exp $ * * DEBUG: * AUTHOR: Harvest Derived @@ -254,7 +254,7 @@ } /* [ahc] Yes, this is english-centric. Sorry! */ -static const char *days[] = { "Sun", "Mon", "Tues", "Wed", "Thu", "Fri", "Sat" }; +static const char *days[] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" }; static const char *months[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }; #define TBUFSZ 128