From: Arvin Schnell Date: Mon, 22 Apr 2013 14:32:22 +0000 (+0200) Subject: - use enum type instead of int X-Git-Tag: v0.1.3~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=01c143b3eeadda520a395b67baee0268e4bb4908;p=thirdparty%2Fsnapper.git - use enum type instead of int --- diff --git a/snapper/FileUtils.h b/snapper/FileUtils.h index 1c34811a..eec9adc6 100644 --- a/snapper/FileUtils.h +++ b/snapper/FileUtils.h @@ -105,10 +105,12 @@ namespace snapper bool umount(const string& mount_point) const; private: + #ifdef ENABLE_XATTRS - int xastatus; + XaAttrsStatus xastatus; void setXaStatus(); #endif + const string base_path; const string path;