diff options
Diffstat (limited to 'mythfs/service/recordingsVolume.cpp')
| -rw-r--r-- | mythfs/service/recordingsVolume.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/mythfs/service/recordingsVolume.cpp b/mythfs/service/recordingsVolume.cpp index 7be25cb..7529b9b 100644 --- a/mythfs/service/recordingsVolume.cpp +++ b/mythfs/service/recordingsVolume.cpp @@ -1,6 +1,6 @@  #include "recordingsVolume.h"  #include <myth-models.h> -#include <boost/filesystem/path.hpp> +#include <filesystem>  #include <Ice/ObjectAdapter.h>  #include "inodes/allDirectory.h" @@ -57,7 +57,7 @@ namespace MythFS {  	{  		errno = 0;  		struct statvfs s; -		boost::filesystem::path p("/var/store/mythrecordings"); +		std::filesystem::path p("/var/store/mythrecordings");  		if (::statvfs(p.c_str(), &s) != 0) {  			throw NetFS::SystemError(errno);  		} @@ -122,7 +122,7 @@ namespace MythFS {  	RecordingsVolume::resolvePath(const std::string & p)  	{  		Node::PointerType d = shared_from_this(); -		boost::filesystem::path path(p.substr(1)); +		std::filesystem::path path(p.substr(1));  		for (const auto & e : path) {  			d = d->getChild(e.string());  		} | 
