summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2013-12-22 18:31:30 +0100
committerSebastien Helleu <flashcode@flashtux.org>2013-12-22 18:31:30 +0100
commit571e6c0d5a9215363486c6e71bb7579f1c9e5fad (patch)
treed623ac33b73bd90a09de09eecfb62ea935df0a57 /src
parent5002cb8b798d558e67f837bf9e76a4797ca18d94 (diff)
downloadweechat-571e6c0d5a9215363486c6e71bb7579f1c9e5fad.zip
irc: use syntax \xNN instead of \NN for control chars in raw buffer
Diffstat (limited to 'src')
-rw-r--r--src/plugins/irc/irc-raw.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/irc/irc-raw.c b/src/plugins/irc/irc-raw.c
index c539011c0..9ed032113 100644
--- a/src/plugins/irc/irc-raw.c
+++ b/src/plugins/irc/irc-raw.c
@@ -230,7 +230,7 @@ irc_raw_message_add (struct t_irc_server *server, int flags,
struct t_irc_raw_message *new_raw_message;
buf = weechat_iconv_to_internal (NULL, message);
- buf2 = malloc ((strlen (buf) * 3) + 1);
+ buf2 = malloc ((strlen (buf) * 4) + 1);
if (buf2)
{
ptr_buf = (buf) ? (unsigned char *)buf : (unsigned char *)message;
@@ -241,6 +241,7 @@ irc_raw_message_add (struct t_irc_server *server, int flags,
if (ptr_buf[pos_buf] < 32)
{
buf2[pos_buf2++] = '\\';
+ buf2[pos_buf2++] = 'x';
buf2[pos_buf2++] = hexa[ptr_buf[pos_buf] / 16];
buf2[pos_buf2++] = hexa[ptr_buf[pos_buf] % 16];
pos_buf++;