From d4cea999d498af0884692bcaeb923277495e15e3 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Wed, 30 Jan 2008 22:34:50 +0000 Subject: 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 --- cpp/src/qpidd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/src/qpidd.cpp') 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)) { -- cgit v1.2.1