Commit ebf447ac authored by Wayne Davison's avatar Wayne Davison

Changed error message for incompatible 2.6.4 pre-release versions.

parent 124f349e
...@@ -178,8 +178,8 @@ int read_item_attrs(int f_in, int f_out, int ndx, uchar *type_ptr, ...@@ -178,8 +178,8 @@ int read_item_attrs(int f_in, int f_out, int ndx, uchar *type_ptr,
extern int am_sender; extern int am_sender;
if (!am_sender || !(iflags & (ITEM_LOCAL_CHANGE|ITEM_TRANSFER))) { if (!am_sender || !(iflags & (ITEM_LOCAL_CHANGE|ITEM_TRANSFER))) {
rprintf(FERROR, rprintf(FERROR,
"The %s side is running 2.6.4pre[12] -- upgrade it or use --protocol=28!\n", "Incompatible 2.6.4 pre-release on %s -- upgrade it or use --protocol=28!\n",
am_sender ? "receiving" : "sending"); am_sender ? "receiver" : "sender");
exit_cleanup(RERR_PROTOCOL); exit_cleanup(RERR_PROTOCOL);
} }
iflags &= ~ITEM_DUMMY_BIT; iflags &= ~ITEM_DUMMY_BIT;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment