Commit 64119c79 authored by Wayne Davison's avatar Wayne Davison

Added MSG_CLIENT to the acceptable messages the generator can

get from the receiver.
parent 8388e011
......@@ -302,11 +302,13 @@ static void read_msg_fd(void)
flist_ndx_push(&hlink_list, IVAL(buf,0));
break;
case MSG_SOCKERR:
case MSG_CLIENT:
if (!am_generator) {
rprintf(FERROR, "invalid message %d:%d\n", tag, len);
exit_cleanup(RERR_STREAMIO);
}
close_multiplexing_out();
if (tag == MSG_SOCKERR)
close_multiplexing_out();
/* FALL THROUGH */
case MSG_INFO:
case MSG_ERROR:
......
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