summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qpidd.cpp
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2013-01-08 21:43:42 +0000
committerAndrew Stitcher <astitcher@apache.org>2013-01-08 21:43:42 +0000
commitb3cc9da195f5573a9ebeb022c8fd9680c82496bb (patch)
treea00b7556151a916f21c431333a733216a8f4c773 /qpid/cpp/src/qpidd.cpp
parentcb9808307d9e27cb9de04eb131427ced0d8d22d8 (diff)
downloadqpid-python-b3cc9da195f5573a9ebeb022c8fd9680c82496bb.tar.gz
QPID-4095: Move the directory iteration into FileSysDir:
- For Posix implement with direct calls - For windows implement with v2/v3 boost::filesystem to be replaced later [Cherry picked from trunk@1424247] git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/0.20@1430554 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/qpidd.cpp')
-rw-r--r--qpid/cpp/src/qpidd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpidd.cpp b/qpid/cpp/src/qpidd.cpp
index 920009580c..8e0c52f770 100644
--- a/qpid/cpp/src/qpidd.cpp
+++ b/qpid/cpp/src/qpidd.cpp
@@ -75,7 +75,7 @@ int run_broker(int argc, char *argv[], bool hidden)
for (vector<string>::iterator iter = bootOptions.module.load.begin();
iter != bootOptions.module.load.end();
iter++)
- qpid::tryShlib (iter->data(), false);
+ qpid::tryShlib (*iter);
if (!bootOptions.module.noLoad) {
bool isDefault = defaultPath == bootOptions.module.loadDir;