From: wessels <> Date: Tue, 23 May 2006 06:48:13 +0000 (+0000) Subject: StoreIOState typedef fixes for Null storage scheme X-Git-Tag: SQUID_3_0_PRE4~101 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=92f8e7133e8da33a39d40cbf5dfd62a0fb2eb79b;p=thirdparty%2Fsquid.git StoreIOState typedef fixes for Null storage scheme --- diff --git a/src/fs/null/store_null.cc b/src/fs/null/store_null.cc index cbaa87de64..25bfee64a6 100644 --- a/src/fs/null/store_null.cc +++ b/src/fs/null/store_null.cc @@ -1,6 +1,6 @@ /* - * $Id: store_null.cc,v 1.8 2005/01/03 16:08:27 robertc Exp $ + * $Id: store_null.cc,v 1.9 2006/05/23 00:48:13 wessels Exp $ * * DEBUG: section 47 Store Directory Routines * AUTHOR: Duane Wessels @@ -61,14 +61,14 @@ NullSwapDir::init() } StoreIOState::Pointer -NullSwapDir::createStoreIO(StoreEntry &, STFNCB *, STIOCB *, void *) +NullSwapDir::createStoreIO(StoreEntry &, StoreIOState::STFNCB *, StoreIOState::STIOCB *, void *) { fatal ("Attempt to get a StoreIO from the NULL store!\n"); return NULL; } StoreIOState::Pointer -NullSwapDir::openStoreIO(StoreEntry &, STFNCB *, STIOCB *, void *) +NullSwapDir::openStoreIO(StoreEntry &, StoreIOState::STFNCB *, StoreIOState::STIOCB *, void *) { fatal ("Attempt to get a StoreIO from the NULL store!\n"); return NULL; diff --git a/src/fs/null/store_null.h b/src/fs/null/store_null.h index 5dbde9a047..445b578a6c 100644 --- a/src/fs/null/store_null.h +++ b/src/fs/null/store_null.h @@ -1,6 +1,6 @@ /* - * $Id: store_null.h,v 1.2 2005/01/03 16:08:27 robertc Exp $ + * $Id: store_null.h,v 1.3 2006/05/23 00:48:13 wessels Exp $ * * SQUID Web Proxy Cache http://www.squid-cache.org/ * ---------------------------------------------------------- @@ -45,8 +45,8 @@ public: NullSwapDir(); virtual void init(); virtual int canStore(StoreEntry const &)const; - virtual StoreIOState::Pointer createStoreIO(StoreEntry &, STFNCB *, STIOCB *, void *); - virtual StoreIOState::Pointer openStoreIO(StoreEntry &, STFNCB *, STIOCB *, void *); + virtual StoreIOState::Pointer createStoreIO(StoreEntry &, StoreIOState::STFNCB *, StoreIOState::STIOCB *, void *); + virtual StoreIOState::Pointer openStoreIO(StoreEntry &, StoreIOState::STFNCB *, StoreIOState::STIOCB *, void *); virtual void parse(int, char*); virtual void reconfigure (int, char *); virtual StoreSearch *search(String const url, HttpRequest *);