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 Oct 19, 2015
1 parent 2091f6d commit 5b2c6c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/findlib/xattr.c
Expand Up @@ -291,7 +291,7 @@ static 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 5b2c6c3

Please sign in to comment.