]> git.ipfire.org Git - thirdparty/snapper.git/commitdiff
- fix typo in error message
authorArvin Schnell <aschnell@suse.de>
Fri, 26 Apr 2013 10:21:53 +0000 (12:21 +0200)
committerArvin Schnell <aschnell@suse.de>
Fri, 26 Apr 2013 10:21:53 +0000 (12:21 +0200)
snapper/XAttributes.cc

index 4d1cf0015d1d965f644ebaeefc61fe8e52a66f44..3f65c6f4044e97067b671bf879087319a26ac848 100644 (file)
@@ -92,7 +92,7 @@ namespace snapper
                v_size = lgetxattr(path.c_str(), name.c_str(), buffer.get(), v_size);
                if (v_size < 0)
                {
-                   y2err("Coudln't get xattribute value for the xattribute name '" << name << "': ");
+                   y2err("Couldn't get xattribute value for the xattribute name '" << name << "': ");
                    throw XAttributesException();
                }
            }
@@ -159,7 +159,7 @@ namespace snapper
                v_size = file.getxattr(name.c_str(), buffer.get(), v_size);
                if (v_size < 0)
                {
-                   y2err("Coudln't get xattrbitue value for the xattrbite name '" << name << "': ");
+                   y2err("Couldn't get xattribute value for the xattribute name '" << name << "': ");
                    throw XAttributesException();
                }
            }