summaryrefslogtreecommitdiff
path: root/print
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2003-06-27 04:01:53 +0000
committerKris Kennaway <kris@FreeBSD.org>2003-06-27 04:01:53 +0000
commit26c8e115ebb78538122b30b1007ce2eb337d8fe9 (patch)
treee0e27c402422a3a551703ba5a7e87148554ece8f /print
parentUnbreak games/quake2forge on 5.1/alpha (diff)
Patch an fgets overflow and bump PORTREVISION.
Obtained from: OpenBSD
Notes
Notes: svn path=/head/; revision=83707
Diffstat (limited to 'print')
-rw-r--r--print/lgrind/Makefile1
-rw-r--r--print/lgrind/files/patch-lgutil_c12
2 files changed, 13 insertions, 0 deletions
diff --git a/print/lgrind/Makefile b/print/lgrind/Makefile
index 339edacad806..ca962471667a 100644
--- a/print/lgrind/Makefile
+++ b/print/lgrind/Makefile
@@ -7,6 +7,7 @@
PORTNAME= lgrind
PORTVERSION= 3.67
+PORTREVISION= 1
CATEGORIES= print
#MASTER_SITES= ftp://ftp.dante.de/tex-archive/support/ \
MASTER_SITES= ${MASTER_SITE_TEX_CTAN}
diff --git a/print/lgrind/files/patch-lgutil_c b/print/lgrind/files/patch-lgutil_c
new file mode 100644
index 000000000000..08ce9386b6a1
--- /dev/null
+++ b/print/lgrind/files/patch-lgutil_c
@@ -0,0 +1,12 @@
+$OpenBSD: patch-lgutil_c,v 1.1 2003/05/01 11:54:15 avsm Exp $
+--- source/lgutil.c.orig Tue Apr 15 22:55:24 2003
++++ source/lgutil.c Tue Apr 15 22:56:21 2003
+@@ -113,7 +113,7 @@ void Internal_Help_Language_List()
+ check=0;
+ if (*config=='\n' || config[strlen(config)-2]!='\\')
+ check=1;
+- if (fgets(config, BUFFERSIZE, tf)==NULL) break;
++ if (fgets(config, sizeof config, tf)==NULL) break;
+ if (check!=0) AddToLList(config, &currlch, &llch);
+ } while (strcmp((*currlch).name, "EndOfLanguageDefinitions")!=0);
+ rch=lch;