summaryrefslogtreecommitdiff
path: root/security/heimdal/patches/patch-aa
blob: b1ee7e02f867af5fc310b625d84f03610b07295f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
$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