From 79fcda58f926f79955fdbd4b86ab913d6274d99c Mon Sep 17 00:00:00 2001 From: Ben Kibbey Date: Sun, 29 Mar 2015 10:08:18 -0400 Subject: [PATCH] Also clear FLAG_ACL_ERROR after target validation. --- src/xml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xml.c b/src/xml.c index f0d0dbf4..3da220f2 100644 --- a/src/xml.c +++ b/src/xml.c @@ -2317,7 +2317,7 @@ validate_target_attribute (struct client_s *client, xmlDocPtr doc, fail: strv_free (src_req); - client->flags &= ~FLAG_ACL_IGNORE; + client->flags &= ~(FLAG_ACL_IGNORE | FLAG_ACL_ERROR); return rc; } -- 2.11.4.GIT