aboutsummaryrefslogtreecommitdiffstats
path: root/irc.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-11-28 02:14:35 +0100
committerJelmer Vernooij <jelmer@samba.org>2005-11-28 02:14:35 +0100
commitcfcc5877b737800ab84cd67d9c413e7254ac1f50 (patch)
treeb4302a38f8a7a90c0328b2a15f947f06c7c8266f /irc.c
parentcf136714caa13e2cd4bf8a69a29c08f3a1518f59 (diff)
parentb20b32f0785f9a1eff448382a98e64812469e112 (diff)
Merge from Wilmer
Diffstat (limited to 'irc.c')
-rw-r--r--irc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc.c b/irc.c
index 709eb116..f5448495 100644
--- a/irc.c
+++ b/irc.c
@@ -599,7 +599,7 @@ int irc_exec( irc_t *irc, char **cmd )
}
else if ( irc->nick && g_strcasecmp( cmd[1], irc->nick ) == 0 )
{
- irc_write( irc, ":%s!%s@%s PRIVMSG %s :%s", irc->nick, irc->user, irc->host, cmd[1], cmd[2] );
+ irc_write( irc, ":%s!%s@%s %s %s :%s", irc->nick, irc->user, irc->host, cmd[0], cmd[1], cmd[2] );
}
else
{