Author: aconway Date: Wed Jan 30 14:34:50 2008 New Revision: 616929 URL: http://svn.apache.org/viewvc?rev=616929&view=rev Log:
>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) Modified: incubator/qpid/trunk/qpid/cpp/src/qpidd.cpp Modified: incubator/qpid/trunk/qpid/cpp/src/qpidd.cpp URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/src/qpidd.cpp?rev=616929&r1=616928&r2=616929&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/cpp/src/qpidd.cpp (original) +++ incubator/qpid/trunk/qpid/cpp/src/qpidd.cpp Wed Jan 30 14:34:50 2008 @@ -155,7 +155,7 @@ void loadModuleDir (string dirname, bool isDefault) { - fs::path dirPath (dirname); + fs::path dirPath (dirname, fs::native); if (!fs::exists (dirPath)) {
