]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
ENTRY_SPECIAL objects should never be aborted
authorwessels <>
Wed, 20 Jan 1999 02:03:05 +0000 (02:03 +0000)
committerwessels <>
Wed, 20 Jan 1999 02:03:05 +0000 (02:03 +0000)
src/store_client.cc

index 909636a36a3576906e9f75546089831225233827..9cd2fa74ed1b83d89549af4ba6a02c293b550c15 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: store_client.cc,v 1.56 1999/01/19 17:41:06 wessels Exp $
+ * $Id: store_client.cc,v 1.57 1999/01/19 19:03:05 wessels Exp $
  *
  * DEBUG: section 20    Storage Manager Client-Side Interface
  * AUTHOR: Duane Wessels
@@ -577,6 +577,8 @@ CheckQuickAbort(StoreEntry * entry)
        return;
     if (entry->store_status != STORE_PENDING)
        return;
+    if (EBIT_TEST(entry->flags, ENTRY_SPECIAL))
+       return;
     if (CheckQuickAbort2(entry) == 0)
        return;
     Counter.aborted_requests++;