From: Christos Tsantilas Date: Wed, 19 Feb 2014 18:48:16 +0000 (+0200) Subject: dynamic_cert_mem_cache_size option related fixes part2: "make check" fails X-Git-Tag: SQUID_3_5_0_1~359 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d4018dfbb63f3abf209b7d579fe22b8fa518dd44;p=thirdparty%2Fsquid.git dynamic_cert_mem_cache_size option related fixes part2: "make check" fails --- diff --git a/src/tests/stub_libsslsquid.cc b/src/tests/stub_libsslsquid.cc index 40b3d148b5..d1eb5f83f1 100644 --- a/src/tests/stub_libsslsquid.cc +++ b/src/tests/stub_libsslsquid.cc @@ -27,8 +27,8 @@ Ssl::Config Ssl::TheConfig; Ssl::CertificateStorageAction::Pointer Ssl::CertificateStorageAction::Create(const Mgr::Command::Pointer &cmd) STUB_RETSTATREF(Ssl::CertificateStorageAction::Pointer) void Ssl::CertificateStorageAction::dump(StoreEntry *sentry) STUB void Ssl::GlobalContextStorage::addLocalStorage(Ip::Address const & address, size_t size_of_store) STUB -Ssl::LocalContextStorage & Ssl::GlobalContextStorage::getLocalStorage(Ip::Address const & address) -{ fatal(STUB_API " required"); static Ssl::LocalContextStorage v(0,0); return v; } +Ssl::LocalContextStorage *Ssl::GlobalContextStorage::getLocalStorage(Ip::Address const & address) +{ fatal(STUB_API " required"); static Ssl::LocalContextStorage v(0,0); return &v; } void Ssl::GlobalContextStorage::reconfigureStart() STUB //Ssl::GlobalContextStorage Ssl::TheGlobalContextStorage;