Skip to content

Commit 4871a9f

Browse files
committed
QPID-7236: set action and object in acl rule even when actionAll is true
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1741495 13f79535-47bb-0310-9956-ffa450edef68
1 parent 44f2ae3 commit 4871a9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qpid/cpp/src/qpid/acl/AclReader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
namespace qpid {
3737
namespace acl {
3838

39-
AclReader::aclRule::aclRule(const AclResult r, const std::string n, const groupMap& groups) : res(r), actionAll(true), objStatus(NONE) {
39+
AclReader::aclRule::aclRule(const AclResult r, const std::string n, const groupMap& groups) : res(r), actionAll(true), action(ACT_ACCESS), objStatus(NONE), object(OBJ_BROKER) {
4040
processName(n, groups);
4141
}
4242
AclReader::aclRule::aclRule(const AclResult r, const std::string n, const groupMap& groups, const Action a) : res(r), actionAll(false), action(a), objStatus(NONE) {

0 commit comments

Comments
 (0)