blob: 2c4d5833b31f8938aab9735de2da315234e77b61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
*** main.c.orig Sat Sep 2 10:20:22 2000
--- main.c Sat Sep 2 10:20:27 2000
***************
*** 70,76 ****
int verbatim = 0;
int prompt_on = 0;
int funcnum = 0;
! int enable_chat = 1;
char homepath[1025];
char prompt_line[BUFFER_SIZE];
--- 70,76 ----
int verbatim = 0;
int prompt_on = 0;
int funcnum = 0;
! int enable_chat = 0;
char homepath[1025];
char prompt_line[BUFFER_SIZE];
*** chat.c.orig Sat Sep 2 10:34:02 2000
--- chat.c Sat Sep 2 10:33:32 2000
***************
*** 1458,1464 ****
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");
fflush(stdout);
return;
}
--- 1458,1464 ----
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(" You can find example in /usr/local/share/doc/tintin\n");
fflush(stdout);
return;
}
|