diff --git a/kernel/brick_say.c b/kernel/brick_say.c index efb3f0ac..426ccd65 100644 --- a/kernel/brick_say.c +++ b/kernel/brick_say.c @@ -528,7 +528,7 @@ void say_to(struct say_channel *ch, int class, const char *fmt, ...) ch = find_channel(current); } - if (likely(ch)) { + if (ch && ch != default_channel) { if (!ch->ch_is_dir) class = SAY_TOTAL; if (likely(class >= 0 && class < MAX_SAY_CLASS)) {