diff options
author | Charles E. Rolke <chug@apache.org> | 2012-08-21 14:42:51 +0000 |
---|---|---|
committer | Charles E. Rolke <chug@apache.org> | 2012-08-21 14:42:51 +0000 |
commit | 4b785ac3e36581bd2cf56f8225965526f9c3239f (patch) | |
tree | 0fe1613e37dc469cc24ba4b8d72b3b13d7dfb2d9 /cpp/src | |
parent | d49d4de15b2eeec16cbbf604e020d12448ed3269 (diff) | |
download | qpid-python-4b785ac3e36581bd2cf56f8225965526f9c3239f.tar.gz |
QPID-4230 Username substitution keywords in Acl file. Repair function definitions that fail Windows compile.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1375583 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/qpid/acl/AclData.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/qpid/acl/AclData.cpp b/cpp/src/qpid/acl/AclData.cpp index 7c14d0985d..6994de2898 100644 --- a/cpp/src/qpid/acl/AclData.cpp +++ b/cpp/src/qpid/acl/AclData.cpp @@ -607,8 +607,8 @@ namespace acl { // Given an Acl rule and an authenticated userId // do the keyword substitutions on the rule. // - void AclData::AclData::substituteUserId(std::string& ruleString, - const std::string& userId) + void AclData::substituteUserId(std::string& ruleString, + const std::string& userId) { size_t locDomSeparator(0); std::string user(""); @@ -640,8 +640,8 @@ namespace acl { // topic key lookups where the keyword string proper is in the // topic key search tree. // - void AclData::AclData::substituteKeywords(std::string& ruleString, - const std::string& userId) + void AclData::substituteKeywords(std::string& ruleString, + const std::string& userId) { size_t locDomSeparator(0); std::string user(""); |