pxar: change uid and gid to u32 instead of u64
Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
This commit is contained in:
committed by
Dietmar Maurer
parent
5e50c606b0
commit
ead7546a96
@ -198,8 +198,8 @@ impl <'a, W: Write> Encoder<'a, W> {
|
||||
let entry = PxarEntry {
|
||||
mode: mode,
|
||||
flags: 0,
|
||||
uid: stat.st_uid as u64,
|
||||
gid: stat.st_gid as u64,
|
||||
uid: stat.st_uid,
|
||||
gid: stat.st_gid,
|
||||
mtime: mtime as u64,
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user