diff options
author | sin <sin@2f30.org> | 2014-09-15 12:27:15 +0100 |
---|---|---|
committer | sin <sin@2f30.org> | 2014-09-15 12:27:15 +0100 |
commit | 4d6cd035259f3c9debea6844e777febe33f4fd48 (patch) | |
tree | 309a65b3967ab8887c3b8cded6b6250254f796dd | |
parent | 24f24315fc9da6e69698e92c76d778555461d77e (diff) |
Just a hack for now, strip the training newline if any
-rw-r--r-- | ratatox.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -365,6 +365,8 @@ again: perror("read"); exit(1); } + if (buf[n - 1] == '\n') + n--; tox_send_message(tox, f->fid, buf, n); } |