aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--irc_user.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc_user.c b/irc_user.c
index 2706eb67..98145ae1 100644
--- a/irc_user.c
+++ b/irc_user.c
@@ -242,7 +242,7 @@ const struct irc_user_funcs irc_user_root_funcs = {
/* Echo to yourself: */
static gboolean self_privmsg( irc_user_t *iu, const char *msg )
{
- irc_send_msg_raw( iu, "PRIVMSG", iu->nick, msg );
+ irc_send_msg( iu, "PRIVMSG", iu->nick, msg, NULL );
return TRUE;
}