Displaying 3 results from an estimated 3 matches for "parent_ndx".
Did you mean:
parent_id
2007 Dec 13
3
rsync 3.00pre6 segfault in add_dirs_to_tree
Hi All
I run rsync in an automated environment and it sometime will crash and
leave a core dump file. from core dump, gdb shows that
gdb) bt
#0 add_dirs_to_tree (parent_ndx=-1, from_flist=0x56c590, dir_cnt=1) at
flist.c:1422
#1 0x0000000000409eab in send_file_list (f=16, argc=-1, argv=0x56c238)
at flist.c:2068
#2 0x0000000000419052 in client_run (f_in=16, f_out=16, pid=-1, argc=1,
argv=0x56c230) at main.c:1033
#3 0x000000000041a09a in main (argc=2, argv=0x56c230) a...
2012 Jun 05
2
[Bug 8979] New: rsync daemon: High load while skipping hardlinks
https://bugzilla.samba.org/show_bug.cgi?id=8979
Summary: rsync daemon: High load while skipping hardlinks
Product: rsync
Version: 3.0.5
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P5
Component: core
AssignedTo: wayned at samba.org
ReportedBy: simon.klinkert at
2009 Jan 24
2
[patch] Replace illegal characters in filenames for FAT (switch)
...i;
+ static const char fat_invalid_chars[] = "*/:<>?\\|\"";
if (DEBUG_GTE(RECV, 1))
rprintf(FINFO, "recv_files(%d) starting\n", cur_flist->used);
@@ -487,6 +490,14 @@ int recv_files(int f_in, char *local_name)
file = dir_flist->files[cur_flist->parent_ndx];
fname = local_name ? local_name : f_name(file, fbuf);
+ if (fat_filenames) {
+ for (i = 0; *fname != 0; i++, fname++) {
+ if (strchr(fat_invalid_chars, *fname))
+ *fname = '_';
+ }
+ fname -= i; /* R...