Fix wrong IQUI message. Partially fixes bug #4.

This commit is contained in:
Jan Vidar Krey 2010-02-12 19:25:09 +01:00
parent 685597c795
commit 1b56adb8c0
1 changed files with 3 additions and 3 deletions

View File

@ -886,14 +886,14 @@ void hub_send_status(struct hub_info* hub, struct hub_user* user, enum status_me
if (level >= status_level_fatal) if (level >= status_level_fatal)
{ {
snprintf(buf, 230, "MS%s", escaped_text); snprintf(buf, 230, "MS%s", escaped_text);
adc_msg_add_argument(cmd, buf); adc_msg_add_argument(qui, buf);
if (reconnect_time != 0) if (reconnect_time != 0)
{ {
snprintf(buf, 10, "TL%d", reconnect_time); snprintf(buf, 10, "TL%d", reconnect_time);
adc_msg_add_argument(cmd, buf); adc_msg_add_argument(qui, buf);
} }
route_to_user(hub, user, cmd); route_to_user(hub, user, qui);
} }
hub_free(escaped_text); hub_free(escaped_text);