--------------------- PatchSet 4910 Date: 2002/09/08 07:59:40 Author: rbcollins Branch: rfc2616 Tag: (none) Log: typo time Members: src/client_side.c:1.70.2.6->1.70.2.7 Index: squid/src/client_side.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/client_side.c,v retrieving revision 1.70.2.6 retrieving revision 1.70.2.7 diff -u -r1.70.2.6 -r1.70.2.7 --- squid/src/client_side.c 8 Sep 2002 07:38:17 -0000 1.70.2.6 +++ squid/src/client_side.c 8 Sep 2002 07:59:40 -0000 1.70.2.7 @@ -1,6 +1,6 @@ /* - * $Id: client_side.c,v 1.70.2.6 2002/09/08 07:38:17 rbcollins Exp $ + * $Id: client_side.c,v 1.70.2.7 2002/09/08 07:59:40 rbcollins Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -1850,13 +1850,14 @@ } else { if (!vary) { vary = httpMakeVaryMark(request, entry->mem_obj->reply); - if (vary) + if (vary) request->vary_headers = xstrdup(vary); else /* Ouch.. we cannot handle this kind of variance */ /* XXX This cannot really happen, but just to be complete */ return VARY_CANCEL; - } else if (strcmp(vary, entry->mem_obj->vary_headers) == 0) { + } + if (strcmp(vary, entry->mem_obj->vary_headers) == 0) { return VARY_MATCH; } else { /* Oops.. we have already been here and still haven't