Skip to content

Commit

Permalink
Fix debug print of xattr value.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco van Wieringen committed Nov 16, 2015
1 parent ac2c2e2 commit c6dfabe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/findlib/xattr.c
Expand Up @@ -290,7 +290,7 @@ bxattr_exit_code unserialize_xattr_stream(JCR *jcr,
unser_bytes(current_xattr->value, current_xattr->value_length);

Dmsg3(100, "Restoring xattr named %s, value %*s\n",
current_xattr->name, current_xattr->value, current_xattr->value);
current_xattr->name, current_xattr->value_length, current_xattr->value);
} else {
current_xattr->value = NULL;
Dmsg1(100, "Restoring empty xattr named %s\n", current_xattr->name);
Expand Down

0 comments on commit c6dfabe

Please sign in to comment.