Displaying 4 results from an estimated 4 matches for "msg_fd_out".
2006 May 13
2
using -v and -q together
seems the behavior of rsync has changed when dealing with output and using
both -v and -q at the same time ... for example:
$ mkdir test1
$ touch test1/foo
$ rsync-2.6.0 -avq test1 test2
$ rm -r test2
$ rsync-2.6.8 -avq test1 test2
test1/
test1/fo
$ rm -r test2
$ rsync-cvs -avq test1 test2
building file list ... test1/
test1/fo
$ rm -r test2
the new output in 2.6.8 comes from the calls to
2004 Nov 23
4
patch for replacing non-printable chars in filenames
...he string, most probably due to
+ * wierd filenames. Skip the first and last chars, they may be \n */
+ int i;
+ for (i=1; i<len-1; i++)
+ if (!isprint(buf[i]))
+ buf[i] = '?';
+ }
+
if (am_server && msg_fd_out >= 0) {
/* Pass the message to our sibling. */
send_msg((enum msgcode)code, buf, len);
2004 Apr 27
1
No error messages in rsyncd log in 2.6.1pre-1
...t case.
There should be an error message to indicate what happened, and when.
There was a change to rwrite() that seems to be preventing the error
logging. This 2.6.1 code:
if (am_server) {
/* Pass it to non-server side, perhaps through our sibling. */
if (msg_fd_out >= 0) {
send_msg((enum msgcode)code, buf, len);
return;
}
if (io_multiplex_write((enum msgcode)code, buf, len))
return;
}
will send all errors to the client and none to the log when t...
2007 Sep 22
0
rsync build on IA64 using icc
...^
log.c(34): remark #1419: external declaration in primary source file
extern int quiet;
^
log.c(35): remark #1419: external declaration in primary source file
extern int module_id;
^
log.c(36): remark #1419: external declaration in primary source file
extern int msg_fd_out;
^
log.c(37): remark #1419: external declaration in primary source file
extern int allow_8bit_chars;
^
log.c(38): remark #1419: external declaration in primary source file
extern int protocol_version;
^
log.c(39): remark #1419: external declaration in p...