diff options
| author | Richard Basch <probe@mit.edu> | 1997-02-20 08:19:25 +0000 |
|---|---|---|
| committer | Richard Basch <probe@mit.edu> | 1997-02-20 08:19:25 +0000 |
| commit | b79517a9cbd1869da26eda15970b7676acf96f91 (patch) | |
| tree | 67c4218764db3e48e66d683785dfda5838d52d62 /src/util | |
| parent | 871a7af91af109ceabefc0abbfca40572afcc905 (diff) | |
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
Diffstat (limited to 'src/util')
| -rw-r--r-- | src/util/et/et_c.awk | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
