Jhoward/macos xattr get all chars #1095
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
On macOS:
XAttrUtil.setXAttr()
was including a bonus\0
char to the end of all xattrs it created.XAttrUtil.getXAttr()
was compensating/removing the bonus\0
char. This means all unit tests pass, but macOS JNA is unable to consume xattrs created via the command line. Any xattrs created via the command line will have their final char truncated.Here is an example file with two xattrs. Each xattr is supposed to have a value of "1". The first was created using JNA, and the second was created using
xattr -w user.samplecli 1 /tmp/jrh.jrh
The change associated with this PR is pretty straightforward. Let me know if you have any questions.