diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2009-07-28 03:37:12 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2009-07-28 03:37:12 +0000 |
| commit | cdf3f617021881756385a2dc62ba15ed80b7ec21 (patch) | |
| tree | d96afd42d0a9d744c3052203dc47f79474a0263a /cpp/src | |
| parent | 18e02a5b6da498a3a6880ee43a77df841ca57079 (diff) | |
| download | qpid-python-cdf3f617021881756385a2dc62ba15ed80b7ec21.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/qpid@798386 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
| -rw-r--r-- | cpp/src/qpid/broker/LinkRegistry.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/LinkRegistry.cpp b/cpp/src/qpid/broker/LinkRegistry.cpp index 10e5359493..3672f71515 100644 --- a/cpp/src/qpid/broker/LinkRegistry.cpp +++ b/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))); } |
