Displaying 4 results from an estimated 4 matches for "int_count".
Did you mean:
in_count
2002 Mar 22
0
Bug in compile of rsync 2.5.4 on Tru64 UNIX V5.1a using cc on AlphaServer 1000 5/300
...=
RCS file: RCS/batch.c,v
retrieving revision 1.1
diff -u -r1.1 batch.c
--- batch.c 2002/03/21 21:31:52 1.1
+++ batch.c 2002/03/21 21:44:11
@@ -396,16 +396,17 @@
struct sum_struct *s)
{
size_t i;
- unsigned int int_zero = 0;
+ unsigned int int_count;
extern int csum_length;
fdb_open = 1;
/* Write csum info to batch file */
- /* FIXME: This will break if s->count is ever not exactly an int. */
+ /* FIXME: This will break if s->count is ever greater than 2^32
+ -1 */
write_batch_csums_file(fl...
2002 Mar 22
2
Bug in compile of rsync 2.5.4 on Tru64 UNIX V5.1a using cc
Greetings, here is the output of the 'configure' step and
the compile step (using the Compaq cc compiler that comes
with Tru64 V5.1A. The configure reported success and most of
the compile steps cam through error/warning free except for
the one that stumbled. Can someone help me out here? I am willing
to provide a binary for Tru64 V5.1A if we can swat this bug.
We depend greatly on Rsync
2004 Jun 17
1
[PATCH] make write_batch local
...* @todo This will break if s->count is ever larger than maxint. The
* batch code should probably be changed to consistently use the
***************
*** 198,203 ****
--- 199,206 ----
}
}
+ if (*flist_entry < 0)
+ return;
write_batch_csums_file(flist_entry, sizeof (int));
int_count = s ? (int) s->count : 0;
write_batch_csums_file(&int_count, sizeof int_count);
***************
*** 285,290 ****
--- 288,296 ----
}
}
+ if (buff == NULL)
+ return;
+
if (write(f_delta, buff, bytes_to_write) < 0) {
rsyserr(FERROR, errno, "Batch file %s write er...
2004 Jul 12
2
[PATCH] Batch-mode rewrite
...nfo(int flist_count, struct file_struct **files)
{
+ return;
char filename[MAXPATHLEN];
int i, f, save_pv;
int64 save_written;
***************
*** 180,185 ****
--- 181,187 ----
**/
void write_batch_csum_info(int *flist_entry, struct sum_struct *s)
{
+ return;
size_t i;
int int_count;
char filename[MAXPATHLEN];
***************
*** 270,275 ****
--- 272,278 ----
void write_batch_delta_file(char *buff, int bytes_to_write)
{
+ return;
char filename[MAXPATHLEN];
if (f_delta < 0) {
Index: clientserver.c
==========================================================...