From 02254085a962931edd59d8b089ce521173ba2c86 Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Mon, 24 Sep 2001 17:11:07 +0000 Subject: [PATCH] comerr-include-proper-old-compat-glue-20010924 so old initialize function works correctly --- src/comerr/compile_et.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/comerr/compile_et.c b/src/comerr/compile_et.c index b2915f4b0..9cbbf641c 100644 --- a/src/comerr/compile_et.c +++ b/src/comerr/compile_et.c @@ -370,7 +370,9 @@ int main (argc, argv) int argc; char **argv; { fprintf (hfile, "#define ERROR_TABLE_BASE_%s (%ldL)\n", lcname, (long int) table_number); fprintf (hfile, "#define init_%s_err_tbl initialize_%s_error_table\n", - lcname, lcname); + lcname, table_name); + fprintf (hfile, "#define initialize_%s_error_table initialize_%s_error_table\n", + lcname, table_name); fprintf (hfile, "#define %s_err_base ERROR_TABLE_BASE_%s\n", lcname, lcname); fclose(hfile); /* bye bye include file */ -- 2.39.5