]> git.ipfire.org Git - thirdparty/snapper.git/commitdiff
- coding style 72/head
authorArvin Schnell <aschnell@suse.de>
Wed, 16 Apr 2014 12:18:35 +0000 (14:18 +0200)
committerArvin Schnell <aschnell@suse.de>
Wed, 16 Apr 2014 12:18:35 +0000 (14:18 +0200)
snapper/Acls.cc

index 04a25492c56b61b3d8b4f974302a06ba6d6186f7..e81a191d71aee8b1853258b9d0fb903b7126c0fb 100644 (file)
 
 namespace snapper
 {
+
     bool
     is_acl_signature(const std::string& name)
     {
        return contains(_acl_signatures, name);
     }
 
+
     Acls::Acls(const string& path)
-    : allowed_types(0x0), acl_access(NULL), acl_default(NULL)
+       : allowed_types(0x0), acl_access(NULL), acl_default(NULL)
     {
        struct stat buf;
 
        int fd = ::open(path.c_str(), O_RDONLY | O_NOFOLLOW | O_NONBLOCK | O_NOATIME |
-                         O_CLOEXEC);
+                       O_CLOEXEC);
        if (fd < 0)
        {
            if (errno == ELOOP)