Fix 64-bit filesystem and type handling

This commit is contained in:
Mario Fetka
2026-04-20 23:39:42 +02:00
parent efd1054c96
commit 368b36eb95
6 changed files with 52 additions and 34 deletions

View File

@@ -62,7 +62,7 @@ static int act_umode_file=0;
typedef struct {
int dev; /* unix dev */
dev_t dev; /* unix dev */
ino_t inode; /* unix inode */
time_t timestamp; /* Zeitmarke */
uint8 *path; /* path ab Volume */
@@ -92,7 +92,7 @@ static int connect_is_init = 0;
typedef struct {
DIR *f;
char unixname[256]; /* full unixname */
int dev; /* Unix dev */
dev_t dev; /* Unix dev */
ino_t inode; /* Unix Inode */
time_t timestamp; /* last allocation */
char *kpath; /* one char after unixname */