pkgsrc/games/gnuchess/patches/patch-ad
tron 45bd4ad8fb Update "gnuchess" package to version 4.0.pl80:
- bug in gnuan (difftime was one parameter, should be two.)
1999-11-17 23:06:20 +00:00

13 lines
337 B
Text

$NetBSD: patch-ad,v 1.2 1999/11/17 23:06:22 tron Exp $
--- search.c.orig Mon Sep 28 08:41:23 1998
+++ search.c Thu Dec 10 23:39:26 1998
@@ -174,7 +174,7 @@
while (true)
{
printf ("debug?");
- gets (b);
+ fgets (b, 32, stdin); b[31] = '\0';
if (b[0] == 'p')
traceply = atoi (&b[1]);
else if (b[0] == '\0')