From: Amos Jeffries Date: Wed, 30 Sep 2015 12:11:11 +0000 (-0700) Subject: FilledCheclist::rfc931 is an array not a ptr X-Git-Tag: SQUID_4_0_1~5^2~13 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a51ed96350d4ab1028f4e8c67407dde7f0aa7992;p=thirdparty%2Fsquid.git FilledCheclist::rfc931 is an array not a ptr --- diff --git a/src/external_acl.cc b/src/external_acl.cc index 62180b5b45..7b89b3de78 100644 --- a/src/external_acl.cc +++ b/src/external_acl.cc @@ -744,7 +744,7 @@ makeExternalAclKey(ACLFilledChecklist * ch, external_acl_data * acl_data) } if (t->type == Format::LFT_USER_IDENT) { - if (!ch->rfc931 || !*ch->rfc931) { + if (!*ch->rfc931) { // if we fail to go async, we still return NULL and the caller // will detect the failure in ACLExternal::match(). (void)ch->goAsync(IdentLookup::Instance());