From: wessels <> Date: Thu, 14 May 1998 03:48:26 +0000 (+0000) Subject: Rewrite hash_remove_link() to use pointer-to-pointer X-Git-Tag: SQUID_3_0_PRE1~3325 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7084c1a74f19b10a7a5e4a271f0fedc8181ac4f;p=thirdparty%2Fsquid.git Rewrite hash_remove_link() to use pointer-to-pointer --- diff --git a/src/structs.h b/src/structs.h index 2453d1ef20..bd2268d7ac 100644 --- a/src/structs.h +++ b/src/structs.h @@ -457,7 +457,7 @@ struct _hash_table { HASHHASH *hash; unsigned int size; unsigned int current_slot; - hash_link *current_ptr; + hash_link **Current; int count; };