From 87d8893a853517ac41e51daceb23ee47dfd08b57 Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Mon, 6 Feb 2006 14:32:25 +0000 Subject: [PATCH] Fixed missing buffer name change --- mbtask/taskchat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mbtask/taskchat.c b/mbtask/taskchat.c index 4defcd8c..6019834f 100644 --- a/mbtask/taskchat.c +++ b/mbtask/taskchat.c @@ -454,7 +454,7 @@ void chat_connect_r(char *data, char *buf) system_msg(tmpu->pid, temp); snprintf(temp, 200, "Welcome to the Internet BBS Chat Network"); system_msg(tmpu->pid, temp); - snprintf(buf, 200, "Current connected servers:"); + snprintf(temp, 200, "Current connected servers:"); system_msg(tmpu->pid, temp); for (sl = servers; sl; sl = sl->next) { snprintf(temp, 200, " %s (%d user%s)", sl->fullname, sl->users, (sl->users == 1) ? "":"s");