Unix bug: link.table was referencing an incompletely constructed variable
authorRichard Basch <probe@mit.edu>
Thu, 20 Feb 1997 08:19:25 +0000 (08:19 +0000)
committerRichard Basch <probe@mit.edu>
Thu, 20 Feb 1997 08:19:25 +0000 (08:19 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9935 dc483132-0cff-0310-8789-dd5450dbe970

src/util/et/et_c.awk

index 61c711d9c1ffee65ee8ea15146138d0484155242..c93ee075e7937b877a37037a5bc1e1d41e462537 100644 (file)
@@ -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