From: Amos Jeffries Date: Sat, 23 Aug 2008 03:39:18 +0000 (+1200) Subject: Author: Francesco Chemolli X-Git-Tag: SQUID_3_1_0_1~49^2~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a70a30c1ce314da4bc950908f38490cd73972fba;p=thirdparty%2Fsquid.git Author: Francesco Chemolli Fixed typo in squid.h which would prevent leak checking for arrays. --- diff --git a/src/squid.h b/src/squid.h index ff85684cae..dde30698f8 100644 --- a/src/squid.h +++ b/src/squid.h @@ -315,7 +315,7 @@ SQUIDCEXTERN size_t getpagesize(void); #define SA_RESETHAND SA_ONESHOT #endif -#if LEACK_CHECK_MODE +#if LEAK_CHECK_MODE #define LOCAL_ARRAY(type,name,size) \ static type *local_##name=NULL; \ type *name = local_##name ? local_##name : \