Replaced uint64_t with off_t or int64_t.

Since off_t is int64_t with LFS, we cannot take advantage of extra
capacity of uint64_t.
This commit is contained in:
Tatsuhiro Tsujikawa 2011-12-07 22:57:34 +09:00
parent f25e67b017
commit 12988e5282
127 changed files with 457 additions and 490 deletions

View file

@ -117,8 +117,8 @@ void HttpHeaderProcessorTest::testGetHttpResponseHeader()
header->find("date"));
CPPUNIT_ASSERT_EQUAL(std::string("Apache/2.2.3 (Debian)"),
header->find("server"));
CPPUNIT_ASSERT_EQUAL((uint64_t)9187ULL,
header->findAsULLInt("content-length"));
CPPUNIT_ASSERT_EQUAL((int64_t)9187LL,
header->findAsLLInt("content-length"));
CPPUNIT_ASSERT_EQUAL(std::string("text/html; charset=UTF-8"),
header->find("content-type"));
CPPUNIT_ASSERT(!header->defined("entity"));