summaryrefslogtreecommitdiff
path: root/src/parse.c
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-01-03 00:07:58 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-01-03 00:07:58 +0000
commitda872603606a961146cd3eec15af849252a00e8a (patch)
treec0ae2476f185ebfc4e6f5f10ceb314ff60d29a68 /src/parse.c
parentb189adf630e0d6216a6014424ce8d93e45d6faac (diff)
- parse.c:handle_numeric(): add missing space as reported by Mantas
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1726 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'src/parse.c')
-rw-r--r--src/parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse.c b/src/parse.c
index a64c97d..425690f 100644
--- a/src/parse.c
+++ b/src/parse.c
@@ -707,7 +707,7 @@ handle_numeric(char numeric[], struct Client *client_p, struct Client *source_p,
!HasUMode(target_p, UMODE_OPER))
sendto_one(target_p, ":%s %s %s %s", me.name, numeric, target_p->name, parv[2]);
else
- sendto_one(target_p, ":%s %s %s%s", ID_or_name(source_p, target_p->from),
+ sendto_one(target_p, ":%s %s %s %s", ID_or_name(source_p, target_p->from),
numeric, ID_or_name(target_p, target_p->from), parv[2]);
}
else