From 5a8cc4e8cdb7dc1055660edb7180d71e0aa99bf6 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Tue, 3 Oct 2017 04:02:39 -0700 Subject: [PATCH] ircd::fs: Fix error. --- ircd/fs.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircd/fs.cc b/ircd/fs.cc index a2c71c133..c9f562ce2 100644 --- a/ircd/fs.cc +++ b/ircd/fs.cc @@ -211,7 +211,7 @@ bool ircd::fs::exists(const std::string &path) try { - return fs::exists(path); + return boost::filesystem::exists(path); } catch(const fs::filesystem_error &e) {