The Samba-Bugzilla – Attachment 6816 Details for
Bug 8411
invalid flist flag when using protocol 28 or 29
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch to fix invalid flist flag error when using different rsync clients
invalid-flist-flag.diff (text/plain), 519 bytes, created by
unobe
on 2011-08-27 01:20:24 UTC
(
hide
)
Description:
Patch to fix invalid flist flag error when using different rsync clients
Filename:
MIME Type:
Creator:
unobe
Created:
2011-08-27 01:20:24 UTC
Size:
519 bytes
patch
obsolete
>diff --git a/flist.c b/flist.c >index 7a6ab34..b3e1aac 100644 >--- a/flist.c >+++ b/flist.c >@@ -2457,7 +2457,8 @@ struct file_list *recv_file_list(int f) > if (protocol_version >= 28 && (flags & XMIT_EXTENDED_FLAGS)) > flags |= read_byte(f) << 8; > >- if (flags == (XMIT_EXTENDED_FLAGS|XMIT_IO_ERROR_ENDLIST)) { >+ if ((protocol_version >= 30 && flags == XMIT_IO_ERROR_ENDLIST) >+ || flags == XMIT_EXTENDED_FLAGS) { > int err; > if (!use_safe_inc_flist) { > rprintf(FERROR, "Invalid flist flag: %x\n", flags);
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 8411
:
6816
|
6819