blob: 964fef610a474fa8495d765d93320acf390ba460 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- chat.c.orig Fri Sep 8 13:42:00 2000
+++ chat.c Tue Sep 23 12:46:11 2000
@@ -66,7 +66,6 @@
#include <stdio.h>
#include <unistd.h>
#include <memory.h>
-#include <malloc.h>
#include <errno.h>
#include <ctype.h>
#include <sys/socket.h>
@@ -1456,9 +1455,8 @@
if ((f = fopen("chat.conf", "r")) == NULL) {
- printf("\n#ERROR: chat.conf not found!\n");
- printf(" This file must be in your current directory.\n");
- printf(" Using defaults...\n");
+ printf("\n#CHAT: chat.conf file must be in your current directory to enable it.\n");
+ printf(" You can find example in /usr/local/share/doc/tintin, use with caution.\n");
fflush(stdout);
return;
}
|