From 404ea3b2aa8d7a2fe50aee68be1d380a52c9716d Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Sat, 30 Nov 2013 02:06:57 -0700 Subject: [PATCH] Fix mistake in porting rev.12660 --- src/Server.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.2