summaryrefslogtreecommitdiff
path: root/security/heimdal/patches/patch-aa
diff options
context:
space:
mode:
Diffstat (limited to 'security/heimdal/patches/patch-aa')
-rw-r--r--security/heimdal/patches/patch-aa29
1 files changed, 0 insertions, 29 deletions
diff --git a/security/heimdal/patches/patch-aa b/security/heimdal/patches/patch-aa
deleted file mode 100644
index b1ee7e02f86..00000000000
--- a/security/heimdal/patches/patch-aa
+++ /dev/null
@@ -1,29 +0,0 @@
-$NetBSD: patch-aa,v 1.3 2005/08/04 16:50:18 tonio Exp $
-
---- lib/asn1/gen_glue.c.orig 2005-08-04 16:58:58.000000000 +0200
-+++ lib/asn1/gen_glue.c 2005-08-04 17:02:45.000000000 +0200
-@@ -103,11 +103,11 @@
- int tag = -1;
-
- fprintf (headerfile,
-- "extern struct units %s_units[];",
-+ "extern struct units * const %s_units;",
- s->gen_name);
-
- fprintf (codefile,
-- "struct units %s_units[] = {\n",
-+ "struct units %s_units_static[] = {\n",
- s->gen_name);
-
- if(t->members)
-@@ -122,6 +122,10 @@
- fprintf (codefile,
- "\t{NULL,\t0}\n"
- "};\n\n");
-+
-+ fprintf (codefile,
-+ "struct units * const %s_units = %s_units_static;\n\n",
-+ s->gen_name, s->gen_name);
- }
-
- void