diff --git a/src/ChangeLog b/src/ChangeLog index 2b58f3051..12f9cb519 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2004-10-06 Alexander Savelyev + + * fileopctx.h (struct FileOpContext): Use off_t for offset. + 2004-10-05 Miroslav Rudisin * util.c(strip_password): Add support for '@' in username. diff --git a/src/fileopctx.h b/src/fileopctx.h index e3a5233a4..3ba20152f 100644 --- a/src/fileopctx.h +++ b/src/fileopctx.h @@ -55,7 +55,7 @@ typedef struct FileOpContext { int recursive_result; /* Whether to do a reget */ - int do_reget; + off_t do_reget; /* Controls appending to files */ int do_append;