From: Theodore Ts'o Date: Tue, 19 Aug 2003 12:36:48 +0000 (-0400) Subject: et_h.awk: Fix wrong prototype for initialize_xxx_err_table_r. X-Git-Tag: E2FSPROGS-1_35-WIP-0821~7 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=924b083a3ebd18e3fadafb43d35e8c7e6acc0721;p=tools%2Fe2fsprogs.git et_h.awk: Fix wrong prototype for initialize_xxx_err_table_r. (Thanks to Gombas Gabor for pointing this out, addresses Debian bug #204332) --- 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 " (" \