diff options
-rw-r--r-- | print/lgrind/Makefile | 1 | ||||
-rw-r--r-- | print/lgrind/files/patch-lgutil_c | 12 |
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; |