-Changes to Squid-2.4.DEVEL3 ():
+Changes to Squid ():
- - Added Logfile module.
- - Added DISKD stats via cachemgr.
- - Added squid.conf options for DISKD magic constants.
- Added --enable-auth-modules=... configure option
- Improved ICP dead peer detection to also work when the workload
is low
a more modular fashion. The object replacement and IO is now
responsibility of the storage directory, and not of the storage
manager.
+ - Fixed a bogous MD5 mismatch warning sometimes seen when using
+ aufs or diskd stores
+
+Changes to Squid-2.4.DEVEL3 ():
+
+ - Added Logfile module.
+ - Added DISKD stats via cachemgr.
+ - Added squid.conf options for DISKD magic constants.
-Changes to Squid-2.4.DEVEL2 ():
+Changes to Squid-2.4.DEVEL2 (Feb 29, 2000):
Changes to Squid-2.4.DEVEL1 ():
/*
- * $Id: store_client.cc,v 1.91 2000/05/28 17:35:04 wessels Exp $
+ * $Id: store_client.cc,v 1.92 2000/05/30 09:24:35 hno Exp $
*
* DEBUG: section 20 Storage Manager Client-Side Interface
* AUTHOR: Duane Wessels
switch (t->type) {
case STORE_META_KEY:
assert(t->length == MD5_DIGEST_CHARS);
- if (memcmp(t->value, e->key, MD5_DIGEST_CHARS)) {
+ if (!EBIT_TEST(e->flags, KEY_PRIVATE) &&
+ memcmp(t->value, e->key, MD5_DIGEST_CHARS)) {
debug(20, 1) ("WARNING: swapin MD5 mismatch\n");
debug(20, 1) ("\t%s\n", storeKeyText(t->value));
debug(20, 1) ("\t%s\n", storeKeyText(e->key));
+ swap_object_ok = 0;
}
break;
case STORE_META_URL: