aboutsummaryrefslogtreecommitdiff
path: root/multimedia/mplex/files/patch-ae
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2003-03-29 09:53:18 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2003-03-29 09:53:18 +0000
commit2c36078d184e6b3fde44793800a6c8ca0b0639f1 (patch)
tree19d35773be783fd6761833f599af82301c20ceac /multimedia/mplex/files/patch-ae
parent46e9a484f814c07d51ab2cb90517f4f5c4c368ae (diff)
downloadports-2c36078d184e6b3fde44793800a6c8ca0b0639f1.tar.gz
ports-2c36078d184e6b3fde44793800a6c8ca0b0639f1.zip
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_8_0'.release/4.8.0
Notes
Notes: svn path=/head/; revision=77676 svn path=/tags/RELEASE_4_8_0/; revision=77677; tag=release/4.8.0
Diffstat (limited to 'multimedia/mplex/files/patch-ae')
-rw-r--r--multimedia/mplex/files/patch-ae20
1 files changed, 0 insertions, 20 deletions
diff --git a/multimedia/mplex/files/patch-ae b/multimedia/mplex/files/patch-ae
deleted file mode 100644
index 41149fd1580f..000000000000
--- a/multimedia/mplex/files/patch-ae
+++ /dev/null
@@ -1,20 +0,0 @@
---- interact.c.orig Wed May 31 20:18:33 1995
-+++ interact.c Fri Feb 11 10:04:07 2000
-@@ -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);