From b04a20c66e2f9e05521dbd04504a6cac52174334 Mon Sep 17 00:00:00 2001 From: Jan Vidar Krey Date: Thu, 21 Jan 2010 22:20:26 +0100 Subject: [PATCH] fixed off by one bug in due to message escape. --- src/core/commands.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/commands.c b/src/core/commands.c index 3038bd6..2218d3d 100644 --- a/src/core/commands.c +++ b/src/core/commands.c @@ -399,8 +399,8 @@ static int command_whoip(struct hub_info* hub, struct hub_user* user, struct hub static int command_broadcast(struct hub_info* hub, struct hub_user* user, struct hub_command* cmd) { - struct adc_message* command = adc_msg_construct(ADC_CMD_IMSG, strlen((cmd->message + 11)) + 6); - adc_msg_add_argument(command, (cmd->message + 11)); + struct adc_message* command = adc_msg_construct(ADC_CMD_IMSG, strlen((cmd->message + 12)) + 6); + adc_msg_add_argument(command, (cmd->message + 12)); route_to_all(hub, command); adc_msg_free(command); return 0;