summaryrefslogtreecommitdiff
path: root/games/connect4/files/patch-ab
blob: 40d88a84d8c07f325274f89f7df27da6786bfe10 (plain) (blame)
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
39
40
41
42
43
44
45
46
47
48
49
*** c4.c.orig	Tue Apr 15 22:06:03 1997
--- c4.c	Tue Apr 15 22:16:29 1997
***************
*** 11,16 ****
--- 11,18 ----
   *     BITNET:                  tcjones@WATER.bitnet
   *     Canadian domain:         tcjones@dragon.uwaterloo.ca
   *
+  * Patched by Joel Sutton, 15th April 1997
+  *     Changed gets calls to fgets. Changed inital prompt slightly.
   */
  
  #include <stdio.h>
***************
*** 219,225 ****
      register char *cp;
  
      printf("Would you like to go first? (yes/no) -> ");
!     if (!gets(line)){
          plot_finish();
          fprintf(stderr, "Could not read input line.\n");
          goodbye();
--- 221,227 ----
      register char *cp;
  
      printf("Would you like to go first? (yes/no) -> ");
!     if (!fgets(line,256,stdin)){
          plot_finish();
          fprintf(stderr, "Could not read input line.\n");
          goodbye();
***************
*** 620,627 ****
          }
      }
  
!     printf("Do you need help (n/y)? -> ");
!     if (!gets(line)){
          fprintf(stderr, "Could not read input line\n");
          goodbye();
      }
--- 622,629 ----
          }
      }
  
!     printf("Do you need help (y/n)? -> ");
!     if (!fgets(line,256,stdin)){
          fprintf(stderr, "Could not read input line\n");
          goodbye();
      }