]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Hack to keep linker happy on missing symbols.
authorFrancesco Chemolli <kinkie@squid-cache.org>
Wed, 28 Jul 2010 16:40:53 +0000 (18:40 +0200)
committerFrancesco Chemolli <kinkie@squid-cache.org>
Wed, 28 Jul 2010 16:40:53 +0000 (18:40 +0200)
libntlmauth/support_bits.cci

index b87cd7646cce9e35675ad7f181c745a8b7791b1a..82d434f46f99415dce3c406496aac35ca4c664da 100644 (file)
@@ -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 */