Don't print KMESSages, they are sent to tty separately.

This commit is contained in:
Ben Gras 2005-10-20 09:29:18 +00:00
parent 7852300ec2
commit ad2bf251a3

View file

@ -68,9 +68,8 @@ message *m; /* notification message */
r ++; r ++;
i ++; i ++;
} }
/* Now terminate the new message and print it. */ /* Now terminate the new message and save it in the log. */
print_buf[i] = 0; print_buf[i] = 0;
printf("%s", print_buf);
log_append(print_buf, i); log_append(print_buf, i);
} }