]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix stub changes missed in rev.13680
authorAmos Jeffries <squid3@treenet.co.nz>
Mon, 3 Nov 2014 01:10:23 +0000 (17:10 -0800)
committerAmos Jeffries <squid3@treenet.co.nz>
Mon, 3 Nov 2014 01:10:23 +0000 (17:10 -0800)
src/tests/stub_cbdata.cc

index af56adaa698fd0d8419cad8437d43cc3027f0e1f..04af1a87df81b34c904117381ce69d5a48e1fac2 100644 (file)
 
 void cbdataRegisterWithCacheManager(void) STUB
 
+void *cbdataInternalAlloc(cbdata_type type, const char *, int) STUB_RETVAL(NULL)
+void *cbdataInternalFree(void *p, const char *, int) STUB_RETVAL(NULL)
 #if USE_CBDATA_DEBUG
-void *cbdataInternalAllocDbg(cbdata_type type, const char *, int) STUB_RETVAL(NULL)
-void *cbdataInternalFreeDbg(void *p, const char *, int) STUB_RETVAL(NULL)
 void cbdataInternalLockDbg(const void *p, const char *, int) STUB
 void cbdataInternalUnlockDbg(const void *p, const char *, int) STUB
 int cbdataInternalReferenceDoneValidDbg(void **p, void **tp, const char *, int) STUB_RETVAL(0)
 #else
-void *cbdataInternalAlloc(cbdata_type type) STUB_RETVAL(NULL)
-void *cbdataInternalFree(void *p) STUB_RETVAL(NULL)
 void cbdataInternalLock(const void *p) STUB
 void cbdataInternalUnlock(const void *p) STUB
 int cbdataInternalReferenceDoneValid(void **p, void **tp) STUB_RETVAL(0)