diff options
author | Gordon Sim <gsim@apache.org> | 2010-08-23 14:51:12 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2010-08-23 14:51:12 +0000 |
commit | 867cc757efb2341a1293f2daa412b8aacd75c515 (patch) | |
tree | b357947cd57fa3e0e61ef7504feaee695638cd10 | |
parent | e59726f86f4ce24668bef5e25071f7418317ac6a (diff) | |
download | qpid-python-867cc757efb2341a1293f2daa412b8aacd75c515.tar.gz |
QPID-664: allow the key in options map for an address to be quoted
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@988138 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | cpp/src/qpid/messaging/AddressParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/messaging/AddressParser.cpp b/cpp/src/qpid/messaging/AddressParser.cpp index 6fe2f6df36..b6d5f764cf 100644 --- a/cpp/src/qpid/messaging/AddressParser.cpp +++ b/cpp/src/qpid/messaging/AddressParser.cpp @@ -134,7 +134,7 @@ bool AddressParser::readKeyValuePair(Variant::Map& map) bool AddressParser::readKey(std::string& key) { - return readWord(key); + return readWord(key) || readQuotedString(key); } bool AddressParser::readValue(Variant& value) |