diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2012-12-20 00:35:54 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2012-12-20 00:35:54 +0000 |
| commit | 4a0452844f85edc5b0be0edcf877e6b5d33302ed (patch) | |
| tree | a1e5f62f65fb9cf767c393bda9020f6e1b63a187 /cpp/src/qpidd.cpp | |
| parent | 24e9d70d7bcefae3a68d3cc4b19e684440776a05 (diff) | |
| download | qpid-python-4a0452844f85edc5b0be0edcf877e6b5d33302ed.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
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1424247 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpidd.cpp')
| -rw-r--r-- | cpp/src/qpidd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpidd.cpp b/cpp/src/qpidd.cpp index 920009580c..8e0c52f770 100644 --- a/cpp/src/qpidd.cpp +++ b/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; |
