diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-08-17 17:01:56 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-08-17 17:01:56 -0400 |
commit | dc8f2ae2ba1a1348f86f412df7f769e6cc2fe541 (patch) | |
tree | 9d33b93d4e120643c03427f7810fea8cb230b62f | |
parent | 70c5dc871ba21ea0b08e84535d14530d0d8afd81 (diff) |
DRTVWR-588: Try even harder to normalize Windows pathnames (SIGHH)
-rw-r--r-- | indra/llcommon/tests/llprocess_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/tests/llprocess_test.cpp b/indra/llcommon/tests/llprocess_test.cpp index 56dc2e4fa9..ece567f40e 100644 --- a/indra/llcommon/tests/llprocess_test.cpp +++ b/indra/llcommon/tests/llprocess_test.cpp @@ -260,7 +260,7 @@ public: } std::string getName() const { return mPath.string(); } - std::string getNormalName() const { return mPath.lexically_normal().string(); } + std::string getNormalName() const { return mPath.lexically_normal().make_preferred().string(); } private: boost::filesystem::path mPath; |