We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57d4c33 commit 7b09dddCopy full SHA for 7b09ddd
mux.c
@@ -217,7 +217,7 @@ char *answerback;
217
218
static void write_receive_buf(const unsigned char *buf, int len)
219
{
220
- if (!len) return;
+ if (!len) return;
221
if (timestamps) {
222
if (buf[len - 1] == '\n' || buf[len -1] == '\r') {
223
new_line = true;
@@ -243,7 +243,7 @@ static void write_receive_buf(const unsigned char *buf, int len)
243
} else {
244
write(STDOUT_FILENO, buf, len);
245
}
246
- if (logfd >= 0) write(logfd, buf, len);
+ if (logfd >= 0) write(logfd, buf, len);
247
248
249
static int ios_printf(struct ios_ops *ios, const char *format, ...)
0 commit comments