tools: getxattr: drop debug statement

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2021-10-19 09:24:53 +02:00
parent 4c0c5c905d
commit 2e14735a84

View File

@ -1878,7 +1878,6 @@ sub getxattr($$;$) {
$xattr_size = syscall(&PVE::Syscall::getxattr, $path_or_handle, $name, $buf, $size);
}
if ($xattr_size < 0) {
warn "$xattr_size <0 - $!";
return undef;
} elsif ($xattr_size > $size) {
$! = POSIX::ENOBUFS;