summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
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
commit6021fa482d01dc27acc57ec7bd1861f3933dea28 (patch)
treeed5a048c4e4519a7c494cc7cbc37d7d0a9bce622 /qpid/cpp/src
parentb36449da852f4100897ba2c33c2d6cb590ea132b (diff)
downloadqpid-python-6021fa482d01dc27acc57ec7bd1861f3933dea28.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@616929 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-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 0b8ab4076c..f240b45dd8 100644
--- a/qpid/cpp/src/qpidd.cpp
+++ b/qpid/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))
{