Message ID | 173862239063.2460098.16773056715229696499.stgit@frogsfrogsfrogs (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | [1/3] mkfs: fix file size setting when interpreting a protofile | expand |
Looks good:
Reviewed-by: Christoph Hellwig <hch@lst.de>
diff --git a/mkfs/xfs_protofile.in b/mkfs/xfs_protofile.in index 9aee4336888523..356d3d80b32521 100644 --- a/mkfs/xfs_protofile.in +++ b/mkfs/xfs_protofile.in @@ -45,7 +45,7 @@ def stat_to_str(statbuf): perms = stat.S_IMODE(statbuf.st_mode) - return '%s%s%s%o %d %d' % (type, suid, sgid, perms, statbuf.st_uid, \ + return '%s%s%s%03o %d %d' % (type, suid, sgid, perms, statbuf.st_uid, \ statbuf.st_gid) def stat_to_extra(statbuf, fullpath):