Browse Source

Check for proxy sending being set as well

master
Con Kolivas 10 years ago
parent
commit
b21cc7176d
  1. 2
      src/generator.c

2
src/generator.c

@ -1539,7 +1539,7 @@ static void send_json_msgq(gdata_t *gdata, cs_msg_t **csmsgq)
/* Only try to send one message at a time to each proxy /* Only try to send one message at a time to each proxy
* to avoid sending parts of different messages */ * to avoid sending parts of different messages */
if (proxy->sending != csmsg) if (proxy->sending && proxy->sending != csmsg)
continue; continue;
while (csmsg->len) { while (csmsg->len) {
int fd; int fd;

Loading…
Cancel
Save