X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/2e7d19945c6fa8ff4a2dbd4561cc499e94ac56c4..a05e4fa512f9a0956b0c1049986d6fa01137b472:/flist.c diff --git a/flist.c b/flist.c index 8ec488c6..7fa13ba9 100644 --- a/flist.c +++ b/flist.c @@ -291,7 +291,7 @@ static void flist_expand(struct file_list *flist) new_ptr = realloc(flist->files, new_bytes); - if (verbose > 2) { + if (verbose >= 2) { rprintf(FINFO, RSYNC_NAME ": expand file_list to %.0f bytes, did%s move\n", (double) new_bytes, (new_ptr == flist->files) ? " not" : ""); @@ -311,7 +311,7 @@ static void send_file_entry(struct file_struct *file, int f, unsigned char flags; static time_t last_time; static mode_t last_mode; - static dev_t last_rdev; + static DEV64_T last_rdev; static uid_t last_uid; static gid_t last_gid; static char lastname[MAXPATHLEN]; @@ -430,7 +430,7 @@ static void receive_file_entry(struct file_struct **fptr, { static time_t last_time; static mode_t last_mode; - static dev_t last_rdev; + static DEV64_T last_rdev; static uid_t last_uid; static gid_t last_gid; static char lastname[MAXPATHLEN];