pxar: change uid and gid to u32 instead of u64

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
This commit is contained in:
Christian Ebner
2019-08-02 15:19:35 +02:00
committed by Dietmar Maurer
parent 5e50c606b0
commit ead7546a96
3 changed files with 6 additions and 6 deletions

View File

@ -51,8 +51,8 @@ pub struct PxarHeader {
pub struct PxarEntry {
pub mode: u64,
pub flags: u64,
pub uid: u64,
pub gid: u64,
pub uid: u32,
pub gid: u32,
pub mtime: u64,
}