summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2009-07-28 03:37:12 +0000
committerAndrew Stitcher <astitcher@apache.org>2009-07-28 03:37:12 +0000
commite96e3f57265ee2a6eda9ec34f1f73ffc421c26c8 (patch)
treeaf5c8c0e73095d29c579972904fa80110c79b2e3 /qpid/cpp/src
parent2e630e525db8c8a0ac53ef6fcf21297bdef48f11 (diff)
downloadqpid-python-e96e3f57265ee2a6eda9ec34f1f73ffc421c26c8.tar.gz
Oops: eliminated a ternary operator giving the "else" instead of the "then".
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@798386 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/broker/LinkRegistry.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/broker/LinkRegistry.cpp b/qpid/cpp/src/qpid/broker/LinkRegistry.cpp
index 10e5359493..3672f71515 100644
--- a/qpid/cpp/src/qpid/broker/LinkRegistry.cpp
+++ b/qpid/cpp/src/qpid/broker/LinkRegistry.cpp
@@ -50,7 +50,7 @@ LinkRegistry::LinkRegistry () :
LinkRegistry::LinkRegistry (Broker* _broker) :
broker(_broker),
parent(0), store(0), passive(false), passiveChanged(false),
- realm("")
+ realm(broker->getOptions().realm)
{
timer.add (intrusive_ptr<TimerTask> (new Periodic(*this)));
}