Added MSG_CLIENT to the acceptable messages the generator can
authorWayne Davison <wayned@samba.org>
Sun, 10 Dec 2006 14:55:44 +0000 (14:55 +0000)
committerWayne Davison <wayned@samba.org>
Sun, 10 Dec 2006 14:55:44 +0000 (14:55 +0000)
get from the receiver.

io.c

diff --git a/io.c b/io.c
index 8fe8284..75f3913 100644 (file)
--- a/io.c
+++ b/io.c
@@ -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: