summaryrefslogtreecommitdiff
path: root/fonts/gbdfed/patches/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'fonts/gbdfed/patches/patch-ab')
-rw-r--r--fonts/gbdfed/patches/patch-ab41
1 files changed, 0 insertions, 41 deletions
diff --git a/fonts/gbdfed/patches/patch-ab b/fonts/gbdfed/patches/patch-ab
deleted file mode 100644
index da2cf19cda8..00000000000
--- a/fonts/gbdfed/patches/patch-ab
+++ /dev/null
@@ -1,41 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2009/08/08 16:28:36 wiz Exp $
-
---- bdfgname.c.orig 2009-03-06 18:12:28.000000000 +0000
-+++ bdfgname.c
-@@ -39,7 +39,7 @@ static unsigned int adobe_names_used;
- #define MAX_GLYPH_NAME_LEN 127
-
- static int
--getline(FILE *in, char *buf, int limit)
-+get_line(FILE *in, char *buf, int limit)
- {
- int c, i;
-
-@@ -78,11 +78,11 @@ _bdf_find_name(int code, char *name, FIL
-
- while (!feof(in)) {
- pos = ftell(in);
-- (void) getline(in, buf, 256);
-+ (void) get_line(in, buf, 256);
- while (!feof(in) && (buf[0] == 0 || buf[0] == '#')) {
- buf[0] = 0;
- pos = ftell(in);
-- (void) getline(in, buf, 256);
-+ (void) get_line(in, buf, 256);
- }
-
- if (buf[0] == 0)
-@@ -139,11 +139,11 @@ _bdf_load_adobe_names(FILE *in)
-
- while (!feof(in)) {
- pos = ftell(in);
-- (void) getline(in, buf, 256);
-+ (void) get_line(in, buf, 256);
- while (!feof(in) && (buf[0] == 0 || buf[0] == '#')) {
- buf[0] = 0;
- pos = ftell(in);
-- (void) getline(in, buf, 256);
-+ (void) get_line(in, buf, 256);
- }
-
- if (adobe_names_used == adobe_names_size) {