summaryrefslogtreecommitdiff
path: root/graphics/mplex/patches/patch-ae
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/mplex/patches/patch-ae')
-rw-r--r--graphics/mplex/patches/patch-ae22
1 files changed, 0 insertions, 22 deletions
diff --git a/graphics/mplex/patches/patch-ae b/graphics/mplex/patches/patch-ae
deleted file mode 100644
index 7c6bee094f7..00000000000
--- a/graphics/mplex/patches/patch-ae
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-ae,v 1.1.1.1 2001/09/23 20:37:35 tron Exp $
-
---- interact.c.orig Wed May 31 04:18:33 1995
-+++ interact.c
-@@ -67,7 +67,7 @@
- char input[20];
-
- printf ("\nContinue processing (y/n) : ");
-- do gets (input);
-+ do fgets (input, sizeof(input), stdin);
- while (input[0]!='N'&&input[0]!='n'&&input[0]!='y'&&input[0]!='Y');
-
- if (input[0]=='N' || input[0]=='n')
-@@ -92,7 +92,7 @@
- char input[20];
-
- printf ("\nVery verbose mode (y/n) : ");
-- do gets (input);
-+ do fgets (input, sizeof(input), stdin);
- while (input[0]!='N'&&input[0]!='n'&&input[0]!='y'&&input[0]!='Y');
-
- if (input[0]=='N' || input[0]=='n') return (FALSE); else return (TRUE);