diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2021-02-17 20:00:27 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2021-03-07 23:39:46 +0000 |
commit | 8b67c555ee9cfb7617ca2e94bb1c53eab8b7e39b (patch) | |
tree | 050308902ca9b81e60a1c84eb3afdd003c1decd4 /test | |
parent | 97045ae80155d4423540405d514020ee1963f42d (diff) |
wip
Diffstat (limited to 'test')
-rw-r--r-- | test/src/server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/server.c b/test/src/server.c index 94cd3a8b2..8fda1d4b0 100644 --- a/test/src/server.c +++ b/test/src/server.c @@ -651,7 +651,7 @@ for (count = 0; count < connection_count; count++) { end = "\n"; ss += 3; len -= 3; } fwrite(ss, 1, len, out); - if (*end) fprintf(out, end); + if (*end) fputs(end, out); } else if (isdigit((unsigned char)ss[0])) |