search for: start_filelist_progress

Displaying 8 results from an estimated 8 matches for "start_filelist_progress".

2002 May 16
1
[patch] suggestions for -v option
...rsync-2.5.5/flist.c.orig Thu Mar 14 22:20:20 2002 +++ rsync-2.5.5/flist.c Tue May 14 16:36:33 2002 @@ -72,7 +72,7 @@ static int show_filelist_p(void) { - return verbose && recurse && !am_server; + return verbose > 1 && recurse && !am_server; } static void start_filelist_progress(char *kind) --- rsync-2.5.5/main.c.orig Wed Mar 27 06:10:44 2002 +++ rsync-2.5.5/main.c Tue May 14 16:38:06 2002 @@ -118,7 +118,7 @@ (double)stats.total_read); } - if (verbose || do_stats) { + if (verbose > 1 || do_stats) { rprintf(FINFO,"wrote %.0f bytes read %.0f bytes...
2002 Jul 31
1
rsync: omit summary with a single -v
...sync-2.5.5.debian/flist.c Thu Mar 14 16:20:20 2002 +++ rsync-2.5.5/flist.c Wed Jul 31 09:13:10 2002 @@ -72,7 +72,7 @@ static int show_filelist_p(void) { - return verbose && recurse && !am_server; + return verbose > 1 && recurse && !am_server; } static void start_filelist_progress(char *kind) diff -r -X /home/roderick/.diff-exclude -u rsync-2.5.5.debian/main.c rsync-2.5.5/main.c --- rsync-2.5.5.debian/main.c Wed Mar 27 00:10:44 2002 +++ rsync-2.5.5/main.c Wed Jul 31 09:13:10 2002 @@ -118,7 +118,7 @@ (double)stats.total_read); } - if (verbose || do_stats) { + i...
2004 Sep 03
1
more filelist --stats
...ge for inclusion in a future release. -------------- next part -------------- diff -ru rsync-2.6.3pre1/flist.c rsync-2.6.3pre1+tykhe/flist.c --- rsync-2.6.3pre1/flist.c 2004-08-12 14:20:07.000000000 -0400 +++ rsync-2.6.3pre1+tykhe/flist.c 2004-09-03 10:17:31.259895000 -0400 @@ -1056,6 +1056,7 @@ start_filelist_progress("building file list"); start_write = stats.total_written; + stats.flist_buildtime = time(NULL); flist = flist_new(f == -1 ? WITHOUT_HLINK : WITH_HLINK, "send_file_list"); @@ -1202,6 +1203,9 @@ } } + stats.flist_buildtime = time(NULL) - stats.fl...
2004 Jan 06
2
[patch] making rsync less verbose
...2.6.0/flist.c 2004-01-06 16:30:15.000000000 +0100 @@ -76,15 +76,12 @@ static int show_filelist_p(void) { - return verbose && (recurse || files_from) && !am_server; + return do_progress && verbose && (recurse || files_from) && !am_server; } static void start_filelist_progress(char *kind) { - rprintf(FINFO, "%s ... ", kind); - if ((verbose > 1) || do_progress) - rprintf(FINFO, "\n"); - rflush(FINFO); + rprintf(FINFO, "%s ... \n", kind); } @@ -96,20 +93,16 @@ static void maybe_emit_filelist_progress(const struct file_list *flist)...
2003 Feb 16
1
rsync-exclude.patch.
...uot;) == 0) @@ -866,6 +911,10 @@ add_exclude_list("!", &local_exclude_list, 0); } + if (recur_local_exclude_list) { + add_exclude_list("!", &recur_local_exclude_list, 0); + } + closedir(d); } @@ -887,6 +936,8 @@ if (show_filelist_p() && f != -1) start_filelist_progress("building file list"); + recur_local_exclude_list = NULL; + start_write = stats.total_written; flist = flist_new(); diff -ru rsync-2.5.6/options.c rsync-2.5.6J/options.c --- rsync-2.5.6/options.c Mon Jan 27 20:11:57 2003 +++ rsync-2.5.6J/options.c Thu Feb 13 11:13:01 2003 @@ -45,...
2003 Jan 14
3
.rsync-/.rsync+ patch and --link-dest example
This is a patch to add an --rsync-exclude option to rsync-2.5.6cvs. File names in .rsync- (or .rsync+) are excluded (or included) from the file lists associated with the current directory and all of its subdirectories. This has advantages over --cvs-exclude for backing up large file systems since the .cvsignore files only apply to the current directory: unless the .cvsignore restrictions apply
2004 Apr 09
3
include/exclude bug in rsync 2.6.0/2.6.1pre1
...-999,6 +1051,10 @@ if (local_exclude_list) free_exclude_list(&local_exclude_list); /* Zeros pointer too */ + if (recur_local_exclude_list) { + free_exclude_list(&recur_local_exclude_list); + } + closedir(d); } @@ -1022,6 +1078,8 @@ if (show_filelist_p() && f != -1) start_filelist_progress("building file list"); + recur_local_exclude_list = NULL; + start_write = stats.total_written; flist = flist_new(f == -1 ? WITHOUT_HLINK : WITH_HLINK, diff -ru rsync-2.6.1pre-1/options.c rsync-2.6.1pre-1J/options.c --- rsync-2.6.1pre-1/options.c 2004-02-22 09:56:43.000000000 +010...
2003 Jan 14
4
specifying a list of files to transfer
...e_list_proc(int f, char *(*ffunc)(), void *opq) { - int i, l; + int l; STRUCT_STAT st; char *p, *dir, *olddir; char lastpath[MAXPATHLEN] = ""; struct file_list *flist; int64 start_write; + char *in_fn; + extern int implicit_dirs; if (show_filelist_p() && f != -1) start_filelist_progress("building file list"); @@ -876,10 +879,10 @@ io_start_buffering(f); } - for (i = 0; i < argc; i++) { + while ((in_fn = (*ffunc)(opq)) != NULL) { char *fname = topsrcname; - strlcpy(fname, argv[i], MAXPATHLEN); + strlcpy(fname, in_fn, MAXPATHLEN); l = strlen(fname);...