From: Richard Basch Date: Thu, 20 Feb 1997 08:19:25 +0000 (+0000) Subject: Unix bug: link.table was referencing an incompletely constructed variable X-Git-Tag: krb5-1.1-beta1~1256 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b79517a9cbd1869da26eda15970b7676acf96f91;p=krb5.git Unix bug: link.table was referencing an incompletely constructed variable git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9935 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/util/et/et_c.awk b/src/util/et/et_c.awk index 61c711d9c..c93ee075e 100644 --- a/src/util/et/et_c.awk +++ b/src/util/et/et_c.awk @@ -219,7 +219,7 @@ END { print "void initialize_" table_name "_error_table (NOARGS) {" > outfile print " if (!link.table) {" > outfile print " link.next = _et_list;" > outfile - print " link.table = &et;" > outfile + print " link.table = &et_" table_name "_error_table;" > outfile print " _et_list = &link;" > outfile print " }" > outfile print "}" > outfile