diff options
author | Sven Moritz Hallberg <sm@khjk.org> | 2008-02-18 10:42:25 +0100 |
---|---|---|
committer | Sven Moritz Hallberg <sm@khjk.org> | 2008-02-18 10:42:25 +0100 |
commit | b14890de5407689555b1fcc293455fb77d306afd (patch) | |
tree | 8c9a5d4be68355075d0f087dc9c1c9d6c7f5ae42 /otr.c | |
parent | 5933da72f1f04810a1b789f9e1e1c1d7e360f30f (diff) |
fix "purple background" bug *sigh* :P
Diffstat (limited to 'otr.c')
-rw-r--r-- | otr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -343,7 +343,7 @@ char *otr_handle_message(struct im_connection *ic, const char *handle, const cha color=3; /* green */ else color=5; /* red */ - colormsg = g_strdup_printf("\x03%.2d%s\x0F", color, newmsg); + colormsg = g_strdup_printf("\x03%.2d,00%s\x0F", color, newmsg); } else { colormsg = g_strdup(newmsg); } |