Displaying 5 results from an estimated 5 matches for "show_flist".
2001 Aug 22
1
@RSYNC EXIT / @RSYNC EOF
...fd, char *user, char *challenge);
+int make_backup(char *fname);
void create_batch_file_ext();
void set_batch_file_ext(char *ext);
void write_batch_flist_file(char *buff, int bytes_to_write);
@@ -23,7 +24,6 @@ void close_batch_delta_file();
int read_batch_delta_file(char *buff, int len);
void show_flist(int index, struct file_struct **fptr);
void show_argvs(int argc, char *argv[]);
-int make_backup(char *fname);
uint32 get_checksum1(char *buf1,int len);
void get_checksum2(char *buf,int len,char *sum);
void file_checksum(char *fname,char *sum,OFF_T size);
2003 Oct 05
2
Possible security hole
Maybe security related mails should be sent elsewhere? I didn't notice
any so here it goes:
sender.c:receive_sums()
s->count = read_int(f);
..
s->sums = (struct sum_buf *)malloc(sizeof(s->sums[0])*s->count);
if (!s->sums) out_of_memory("receive_sums");
for (i=0; i < (int) s->count;i++) {
s->sums[i].sum1 = read_int(f);
2002 Feb 07
1
Latest version of the batch mode cleanup patch
...delta);
exit_cleanup(1);
}
@@ -561,13 +559,13 @@
if (bytes_read == -1) {
rprintf(FERROR, "Batch file %s read error: %s\n",
- rsync_delta_file, strerror(errno));
+ filename, strerror(errno));
close(fdb_delta);
exit_cleanup(1);
}
+
return bytes_read;
}
-
void show_flist(int index, struct file_struct **fptr)
{
Index: log.c
===================================================================
RCS file: /cvsroot/rsync/log.c,v
retrieving revision 1.56
diff -u -r1.56 log.c
--- log.c 24 Jan 2002 02:41:38 -0000 1.56
+++ log.c 6 Feb 2002 19:48:04 -0000
@@ -559,20 +559,16 @...
2001 Aug 06
1
merge rsync+ into rsync (was Re: rsync-2.4.7 NEWS file)
> Just curious: what about the rsync+ patch?
Thanks for the reminder.
I've just committed Jos's rsync+ patch onto the
"branch_mbp_rsyncplus_merge" branch. If it works OK and nobody
screams I will move it across onto the main tree tomorrow or
Wednesday.
I see the patch doesn't add documentation about the new options to the
man page, so we should fix that in the future.
2002 Aug 05
5
[patch] read-devices
...his in checksum.c. #ET#
+ */
+ }
+
if (tmpdir) {
args[ac++] = "--temp-dir";
args[ac++] = tmpdir;
}
diff -r -u4 rsync-2.5.5/proto.h rsync-patched/proto.h
--- rsync-2.5.5/proto.h Mon Mar 25 06:51:17 2002
+++ rsync-patched/proto.h Mon Aug 5 10:05:15 2002
@@ -25,9 +25,9 @@
void show_flist(int index, struct file_struct **fptr);
void show_argvs(int argc, char *argv[]);
uint32 get_checksum1(char *buf1,int len);
void get_checksum2(char *buf,int len,char *sum);
-void file_checksum(char *fname,char *sum,OFF_T size);
+void file_checksum(char *fname,char *sum);
void checksum_init(void);...