Commit 900748fc authored by Martin Pool's avatar Martin Pool

rwrite: Doc.

parent 87ee2481
......@@ -237,7 +237,11 @@ void rwrite(enum logcode code, char *buf, int len)
return;
}
/* if that fails, try to pass it to the other end */
/* If that fails, try to pass it to the other end.
*
* io_multiplex_write can fail if we do not have a multiplexed
* connection at the moment, in which case we fall through and
* log locally instead. */
if (am_server && io_multiplex_write(code, buf, len)) {
return;
}
......
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