]> git.proxmox.com Git - pve-common.git/commitdiff
tools: getxattr: drop debug statement
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 19 Oct 2021 07:24:53 +0000 (09:24 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 19 Oct 2021 07:24:53 +0000 (09:24 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
src/PVE/Tools.pm

index cacfc89f9b6b31e01a9ca354fbe54b019fca70ea..2f248da0548bf84802ee4b3aee87d35dbea9dd87 100644 (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;