From: Arvin Schnell Date: Fri, 26 Apr 2013 10:21:53 +0000 (+0200) Subject: - fix typo in error message X-Git-Tag: v0.1.4~23 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=35ff4eca49393b033a7cbaf76479addeb6c77a8d;p=thirdparty%2Fsnapper.git - fix typo in error message --- diff --git a/snapper/XAttributes.cc b/snapper/XAttributes.cc index 4d1cf001..3f65c6f4 100644 --- a/snapper/XAttributes.cc +++ b/snapper/XAttributes.cc @@ -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(); } }