From: Francesco Chemolli Date: Wed, 28 Jul 2010 16:40:53 +0000 (+0200) Subject: Hack to keep linker happy on missing symbols. X-Git-Tag: take1~402^2~2^2~20^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13b780182f6a34a681e931e9e4f2ad379bb66c92;p=thirdparty%2Fsquid.git Hack to keep linker happy on missing symbols. --- diff --git a/libntlmauth/support_bits.cci b/libntlmauth/support_bits.cci index b87cd7646c..82d434f46f 100644 --- a/libntlmauth/support_bits.cci +++ b/libntlmauth/support_bits.cci @@ -88,6 +88,13 @@ hex_dump(unsigned char *data, int size) fprintf(stderr, "[%4.4s] %-50.50s %s\n", addrstr, hexstr, charstr); } } + + if (0) { //temporary hack to keep the linker happy + uc(NULL); + lc(NULL); + hex_dump(NULL,0); + } + } #endif /* _SQUID_LIBNTLMAUTH_SUPPORT_BITS_CCI */