Displaying 8 results from an estimated 8 matches for "show_filelist_p".
2004 Jan 06
2
[patch] making rsync less verbose
...http://www.altium.com
--------------------------------oOO--(_)--OOo---------------------------
-------------- next part --------------
--- rsync-2.6.0/flist.c.orig 2004-01-06 16:16:09.000000000 +0100
+++ rsync-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...
2002 May 16
1
[patch] suggestions for -v option
...m.nl (@ @) http://www.altium.com
--------------------------------oOO--(_)--OOo---------------------------
-------------- next part --------------
--- 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...
2002 Jul 31
1
rsync: omit summary with a single -v
...a single -v behave this way. -vv causes it
to include the extra info.
diff -r -X /home/roderick/.diff-exclude -u rsync-2.5.5.debian/flist.c rsync-2.5.5/flist.c
--- rsync-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/...
2016 Oct 07
3
[Bug 12367] New: temporary lines in --progress output are not cleared
https://bugzilla.samba.org/show_bug.cgi?id=12367
Bug ID: 12367
Summary: temporary lines in --progress output are not cleared
Product: rsync
Version: 3.1.2
Hardware: All
OS: All
Status: NEW
Severity: minor
Priority: P5
Component: core
Assignee: wayned at samba.org
2003 Feb 16
1
rsync-exclude.patch.
....") == 0 || strcmp(dname, "..") == 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-...
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
...&& (dname[1] == '\0'
@@ -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.1p...
2003 Jan 14
4
specifying a list of files to transfer
...rgv[])
+static struct file_list *send_file_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(fna...