From: wessels <> Date: Sat, 14 Sep 1996 13:22:04 +0000 (+0000) Subject: make storeCopy() static X-Git-Tag: SQUID_3_0_PRE1~5804 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c39056350eeb2d124d09cff6141140826ea64ac5;p=thirdparty%2Fsquid.git make storeCopy() static --- diff --git a/src/store.cc b/src/store.cc index eb6a4b766e..7cb4f35818 100644 --- a/src/store.cc +++ b/src/store.cc @@ -1,6 +1,6 @@ /* - * $Id: store.cc,v 1.107 1996/09/13 23:16:44 wessels Exp $ + * $Id: store.cc,v 1.108 1996/09/14 07:22:04 wessels Exp $ * * DEBUG: section 20 Storeage Manager * AUTHOR: Harvest Derived @@ -219,6 +219,7 @@ static int compareSize _PARAMS((StoreEntry ** e1, StoreEntry ** e2)); static int storeClientListSearch _PARAMS((MemObject *, int fd)); static void storeHashMemInsert _PARAMS((StoreEntry *)); static void storeHashMemDelete _PARAMS((StoreEntry *)); +static int storeCopy _PARAMS((StoreEntry *, int, int, char *, int *)); /* Now, this table is inaccessible to outsider. They have to use a method * to access a value in internal storage data structure. */ @@ -2231,7 +2232,7 @@ int storeEntryLocked(e) } /* use this for internal call only */ -int storeCopy(e, stateoffset, maxSize, buf, size) +static int storeCopy(e, stateoffset, maxSize, buf, size) StoreEntry *e; int stateoffset; int maxSize;