From 80e8cd071e05305d0fc70fa6d78991cf9b50d7e4 Mon Sep 17 00:00:00 2001 From: Mathias Gumz Date: Fri, 2 Oct 2009 08:38:24 +0200 Subject: just use the FbTk API --- src/Keys.cc | 5 +++++ util/fluxbox-update_configs.cc | 7 +++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/Keys.cc b/src/Keys.cc index 84e5eb8..0b8efe5 100644 --- a/src/Keys.cc +++ b/src/Keys.cc @@ -28,6 +28,7 @@ #include "FbTk/EventManager.hh" #include "FbTk/StringUtil.hh" +#include "FbTk/FileUtil.hh" #include "FbTk/App.hh" #include "FbTk/Command.hh" #include "FbTk/RefCount.hh" @@ -276,6 +277,10 @@ void Keys::reload() { FbTk::App::instance()->sync(false); + if (! FbTk::FileUtil::isRegularFile(m_filename.c_str())) { + return; + } + // open the file ifstream infile(m_filename.c_str()); if (!infile) { diff --git a/util/fluxbox-update_configs.cc b/util/fluxbox-update_configs.cc index fcb9bc2..85bbbfe 100644 --- a/util/fluxbox-update_configs.cc +++ b/util/fluxbox-update_configs.cc @@ -22,6 +22,7 @@ #include "../src/FbTk/I18n.hh" #include "../src/FbTk/Resource.hh" #include "../src/FbTk/StringUtil.hh" +#include "../src/FbTk/FileUtil.hh" #include "defaults.hh" @@ -473,11 +474,9 @@ string read_file(const string& filename) { if (it != file_cache.end()) return it->second; - struct stat s; - stat(filename.c_str(), &s); - - if (! (s.st_mode & S_IFREG)) + if (!FbTk::FileUtil::isRegularFile(filename.c_str())) { return ""; + } // nope, we'll have to read the file ifstream infile(filename.c_str()); -- cgit v0.11.2