From: Amos Jeffries Date: Sat, 30 Nov 2013 09:06:57 +0000 (-0700) Subject: Fix mistake in porting rev.12660 X-Git-Tag: SQUID_3_3_11~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=404ea3b2aa8d7a2fe50aee68be1d380a52c9716d;p=thirdparty%2Fsquid.git Fix mistake in porting rev.12660 --- diff --git a/src/Server.cc b/src/Server.cc index cef1fb2b12..fc0e085e1d 100644 --- a/src/Server.cc +++ b/src/Server.cc @@ -526,7 +526,7 @@ ServerStateData::haveParsedReplyHeaders() // adaptation may overwrite old offset computed using the virgin response const bool partial = theFinalReply->content_range && - theFinalReply->sline.status() == Http::scPartialContent; + theFinalReply->sline.status() == HTTP_PARTIAL_CONTENT; currentOffset = partial ? theFinalReply->content_range->spec.offset : 0; }