summaryrefslogtreecommitdiff
path: root/progress.c
AgeCommit message (Collapse)AuthorFilesLines
2006-10-13Changed strcpy() calls into strlcpy() calls, just to be extra safe.Wayne Davison1-1/+1
2006-05-09Output the progress message as FCLIENT instead of FINFO.Wayne Davison1-1/+1
2006-04-25Updated the FSF's address to an even newer one.Wayne Davison1-3/+3
2006-04-25- Updated the address for the FSF in the opening comment.Wayne Davison1-5/+7
- Standardized the format of the opening comment, including adding a brief description of what's in the file for those that lacked it. - Added some missing copyright lines. - Some minor whitespace tweaks (in a few of the files).
2006-01-14If the --human-readable option is in effect, output the size ofWayne Davison1-2/+2
each file in human-readable units instead of a raw byte count.
2005-11-03Fixed a sign error in the output.Wayne Davison1-1/+1
2005-11-03Make the just-updated file-count status even less cryptic.Wayne Davison1-1/+1
2005-11-03Improved the output of the transferred-file count and the positionWayne Davison1-3/+2
in the flist (which was changed to a countdown of files to check) so that it's clearer what the numbers mean.
2005-03-05Fixed the elapsed time reported for 0-length files.Wayne Davison1-5/+6
2005-02-14John E. Malmberg convinced me to standardize on #ifs for definedWayne Davison1-4/+4
values instead of non-zero.
2005-01-28A minor change to the HAVE_GETPGRP code.Wayne Davison1-7/+8
2005-01-25If rsync is put in the background, output fewer progress-reportWayne Davison1-0/+20
lines.
2004-02-28Improved the progress reporting/E.T.A. using a (slightly modifed)Wayne Davison1-34/+61
patch from Timo Sirainen.
2004-01-27Percentage of file-count output was off by one.Wayne Davison1-1/+2
2004-01-13Give the user an idea of how far along in the transfer we areWayne Davison1-2/+10
when using --progress.
2004-01-13Moved a couple externs.Wayne Davison1-3/+2
2003-12-12Neatened up the indentation.Wayne Davison1-46/+44
2003-07-08Optimized show_progress() to reduce the calls to gettimeofday() whenWayne Davison1-25/+29
am_server is set. No need to check do_progress here anymore, since we aren't called if do_progress isn't set.
2002-04-08Fix copyright.Martin Pool1-0/+21
2002-04-08Split code out into separate files and remove some global variables toMartin Pool1-0/+96
reduce symbol dependencies between files and therefore make it easier to write unit tests. The diff is large, but the actual code changes are pretty small.