Fix unmount of drives with spaces in their names (#1744).
authorCarl Hetherington <cth@carlh.net>
Sat, 2 May 2020 23:13:26 +0000 (01:13 +0200)
committerCarl Hetherington <cth@carlh.net>
Sat, 2 May 2020 23:13:26 +0000 (01:13 +0200)
src/lib/cross_linux.cc

index 36683a0cd1cac9551a74935b32c4895b906ea99d..a60f7af6336728f1040523bca306bc4d0454931d 100644 (file)
@@ -274,6 +274,7 @@ get_mounts (string prefix)
                vector<string> bits;
                boost::algorithm::split (bits, line, boost::is_any_of(" "));
                if (bits.size() > 1 && boost::algorithm::starts_with(bits[0], prefix)) {
                vector<string> bits;
                boost::algorithm::split (bits, line, boost::is_any_of(" "));
                if (bits.size() > 1 && boost::algorithm::starts_with(bits[0], prefix)) {
+                       boost::algorithm::replace_all (bits[1], "\\040", " ");
                        mounts.push_back(make_pair(bits[0], bits[1]));
                        LOG_DISK("Found mounted device %1 from prefix %2", bits[0], prefix);
                }
                        mounts.push_back(make_pair(bits[0], bits[1]));
                        LOG_DISK("Found mounted device %1 from prefix %2", bits[0], prefix);
                }