]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Reset the async state of the checklist when external acl lookup completes.
authorhno <>
Sun, 11 May 2003 16:11:31 +0000 (16:11 +0000)
committerhno <>
Sun, 11 May 2003 16:11:31 +0000 (16:11 +0000)
src/external_acl.cc

index 265374e4f97f014ea537d992bfd00842cca0b5d9..a6183a0207c0f49827b53e3ceb4c13dcab4e747c 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: external_acl.cc,v 1.38 2003/05/06 20:11:50 hno Exp $
+ * $Id: external_acl.cc,v 1.39 2003/05/11 10:11:31 hno Exp $
  *
  * DEBUG: section 82    External ACL
  * AUTHOR: Henrik Nordstrom, MARA Systems AB
@@ -1089,6 +1089,7 @@ ExternalACLLookup::LookupDone(void *data, void *result)
     ACLChecklist *checklist = (ACLChecklist *)data;
     checklist->extacl_entry = cbdataReference((external_acl_entry *)result);
     checklist->asyncInProgress(false);
+    checklist->changeState (ACLChecklist::NullState::Instance());
     checklist->check();
 }