From a51ed96350d4ab1028f4e8c67407dde7f0aa7992 Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Wed, 30 Sep 2015 05:11:11 -0700 Subject: [PATCH] FilledCheclist::rfc931 is an array not a ptr --- src/external_acl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); -- 2.47.3