From 924b083a3ebd18e3fadafb43d35e8c7e6acc0721 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Tue, 19 Aug 2003 08:36:48 -0400 Subject: [PATCH] et_h.awk: Fix wrong prototype for initialize_xxx_err_table_r. (Thanks to Gombas Gabor for pointing this out, addresses Debian bug #204332) --- lib/et/ChangeLog | 6 ++++++ lib/et/et_h.awk | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/et/ChangeLog b/lib/et/ChangeLog index 5f3095c..e3d53bd 100644 --- a/lib/et/ChangeLog +++ b/lib/et/ChangeLog @@ -1,3 +1,9 @@ +2003-08-19 Theodore Ts'o + + * et_h.awk: Fix wrong prototype for initialize_xxx_err_table_r. + (Thanks to Gombas Gabor for pointing this out, addresses + Debian bug #204332) + 2003-08-01 Philipp Thomas * et_c.awk, et_h.awk: Add Heimdal compile_et extensions diff --git a/lib/et/et_h.awk b/lib/et/et_h.awk index f598393..73caffc 100644 --- a/lib/et/et_h.awk +++ b/lib/et/et_h.awk @@ -183,7 +183,7 @@ END { print "extern void initialize_" table_name "_error_table(void);" > outfile print "" > outfile print "/* For compatibility with Heimdal */" > outfile - print "extern void initialize_" table_name "_error_table_r(void);" > outfile + print "extern void initialize_" table_name "_error_table_r(struct et_list **list);" > outfile print "" > outfile if (tab_base_high == 0) { print "#define ERROR_TABLE_BASE_" table_name " (" \ -- 1.8.3.1