summaryrefslogtreecommitdiff
path: root/tls.c
diff options
context:
space:
mode:
Diffstat (limited to 'tls.c')
-rw-r--r--tls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tls.c b/tls.c
index a3f3200..167f530 100644
--- a/tls.c
+++ b/tls.c
@@ -106,7 +106,7 @@ ssize_t SEND(struct string msg) {
WRITES(1, msg);
- if (msg.data[msg.len - 1] == '\n') {
+ if (msg.len == 0 || msg.data[msg.len - 1] == '\n') {
printprefix = 1;
#if COLORIZE
WRITES(1, STRING("\x1b[0m\n"));