summaryrefslogtreecommitdiff
path: root/cpp/src/qpidd.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-01-30 22:34:50 +0000
committerAlan Conway <aconway@apache.org>2008-01-30 22:34:50 +0000
commitd4cea999d498af0884692bcaeb923277495e15e3 (patch)
treed5ceb6d7b179b0179c8f073a6521bc3819d7525a /cpp/src/qpidd.cpp
parenta1a7595f603058cd5d76618483516bb3003c5fd1 (diff)
downloadqpid-python-d4cea999d498af0884692bcaeb923277495e15e3.tar.gz
From Ted Ross, https://issues.apache.org/jira/browse/QPID-767
Bugfix: --load-dir rejected path-name-elements beginning with or ending with '.' (boost 1.33 only) git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@616929 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpidd.cpp')
-rw-r--r--cpp/src/qpidd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpidd.cpp b/cpp/src/qpidd.cpp
index 0b8ab4076c..f240b45dd8 100644
--- a/cpp/src/qpidd.cpp
+++ b/cpp/src/qpidd.cpp
@@ -155,7 +155,7 @@ void tryShlib(const char* libname, bool noThrow) {
void loadModuleDir (string dirname, bool isDefault)
{
- fs::path dirPath (dirname);
+ fs::path dirPath (dirname, fs::native);
if (!fs::exists (dirPath))
{