From e3a55c39b6dd7a866aa1033203a1813e646f8c50 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 17 Jul 2015 14:23:06 +0200 Subject: Fix stat/lstat type/ltype to be consistent, use correct *stat() --- butl/filesystem | 4 ++-- butl/filesystem.cxx | 6 +++--- butl/filesystem.ixx | 10 +++++----- 3 files changed, 10 insertions(+), 10 deletions(-) (limited to 'butl') diff --git a/butl/filesystem b/butl/filesystem index 63b19ff..0a5d7eb 100644 --- a/butl/filesystem +++ b/butl/filesystem @@ -96,11 +96,11 @@ namespace butl public: typedef butl::path path_type; + // Symlink target type in case of the symlink, ltype() otherwise. + // entry_type type () const; - // Symlink target type in case of the symlink, type() otherwise. - // entry_type ltype () const; diff --git a/butl/filesystem.cxx b/butl/filesystem.cxx index c65d591..2a1fad9 100644 --- a/butl/filesystem.cxx +++ b/butl/filesystem.cxx @@ -42,7 +42,7 @@ namespace butl file_mtime (const path& p) { struct stat s; - if (::lstat (p.string ().c_str (), &s) != 0) + if (::stat (p.string ().c_str (), &s) != 0) { if (errno == ENOENT || errno == ENOTDIR) return timestamp_nonexistent; @@ -61,7 +61,7 @@ namespace butl dir_exists (const path& p) { struct stat s; - if (::lstat (p.string ().c_str (), &s) != 0) + if (::stat (p.string ().c_str (), &s) != 0) { if (errno == ENOENT || errno == ENOTDIR) return false; @@ -76,7 +76,7 @@ namespace butl file_exists (const path& p) { struct stat s; - if (::lstat (p.string ().c_str (), &s) != 0) + if (::stat (p.string ().c_str (), &s) != 0) { if (errno == ENOENT || errno == ENOTDIR) return false; diff --git a/butl/filesystem.ixx b/butl/filesystem.ixx index 7aa3622..2d2690f 100644 --- a/butl/filesystem.ixx +++ b/butl/filesystem.ixx @@ -9,16 +9,16 @@ namespace butl inline entry_type dir_entry:: type () const { - return t_ != entry_type::unknown ? t_ : (t_ = type (false)); + entry_type t (ltype ()); + return t != entry_type::symlink + ? t + : lt_ != entry_type::unknown ? lt_ : (lt_ = type (true)); } inline entry_type dir_entry:: ltype () const { - entry_type t (type ()); - return t != entry_type::symlink - ? t - : lt_ != entry_type::unknown ? lt_ : (lt_ = type (true)); + return t_ != entry_type::unknown ? t_ : (t_ = type (false)); } // dir_iterator -- cgit v1.1