mirror of
https://github.com/samba-team/samba.git
synced 2024-12-31 17:18:04 +03:00
0e8fd33987
(This used to be commit 291551d807
)
18 lines
287 B
C
18 lines
287 B
C
|
|
#define TBLOCK 512
|
|
#define NAMSIZ 100
|
|
union hblock {
|
|
char dummy[TBLOCK];
|
|
struct header {
|
|
char name[NAMSIZ];
|
|
char mode[8];
|
|
char uid[8];
|
|
char gid[8];
|
|
char size[12];
|
|
char mtime[12];
|
|
char chksum[8];
|
|
char linkflag;
|
|
char linkname[NAMSIZ];
|
|
} dbuf;
|
|
};
|