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 Sep 25, 2015
1 parent 33f572f commit f45afb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/findlib/xattr.c
Expand Up @@ -206,7 +206,7 @@ uint32_t serialize_xattr_stream(JCR *jcr,
ser_bytes(current_xattr->value, current_xattr->value_length);

Dmsg3(100, "Backup 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 {
Dmsg1(100, "Backup empty xattr named %s\n", current_xattr->name);
}
Expand Down

0 comments on commit f45afb5

Please sign in to comment.