Displaying 3 results from an estimated 3 matches for "fdb_delta".
Did you mean:
fdb_delete
2002 Feb 07
1
Latest version of the batch mode cleanup patch
...h"
#include <time.h>
-char rsync_flist_file[27] = "rsync_flist.";
-char rsync_csums_file[27] = "rsync_csums.";
-char rsync_delta_file[27] = "rsync_delta.";
-char rsync_argvs_file[27] = "rsync_argvs.";
-
-char batch_file_ext[15];
-
-int fdb;
-int fdb_delta;
-int fdb_open;
-int fdb_close;
+extern char *batch_prefix;
struct file_list *batch_flist;
-void create_batch_file_ext()
-{
- struct tm *timeptr;
- time_t elapsed_seconds;
-
- /* Save run date and time to use for batch file extensions */
- time(&elapsed_seconds);
- timeptr = localtime(&...
2002 Jan 13
1
rsynd-2.5.1 / batch.c patch
...if ((*flist_entry == flist_count - 1)
&& (i == s->count - 1)) {
@@ -486,7 +487,7 @@
}
-void write_batch_delta_file(char *buff, int bytes_to_write)
+void write_batch_delta_file(const void *buff, int bytes_to_write)
{
static int fdb_delta_open = 1;
@@ -516,13 +517,13 @@
exit_cleanup(1);
}
}
-void close_batch_delta_file()
+void close_batch_delta_file(void)
{
close(fdb_delta);
}
-int read_batch_delta_file(char *buff, int len)
+int read_batch_delta_file(void *buff, int len)
{
stati...
2002 Feb 11
0
RSYNC 2.5.2 type mismatches in batch.c
...sizeof(uint32));
read_batch_csums_file(file_sum2, csum_length);
@@ -498,7 +499,7 @@
}
-void write_batch_delta_file(char *buff, int bytes_to_write)
+void write_batch_delta_file(const void *buff, int bytes_to_write)
{
static int fdb_delta_open = 1;
@@ -528,13 +529,13 @@
exit_cleanup(1);
}
}
-void close_batch_delta_file()
+void close_batch_delta_file(void)
{
close(fdb_delta);
}
-int read_batch_delta_file(char *buff, int len)
+int read_batch_delta_file(void *buff, int len)
{
stati...