Whamcloud - gitweb
et_h.awk: Fix wrong prototype for initialize_xxx_err_table_r.
authorTheodore Ts'o <tytso@mit.edu>
Tue, 19 Aug 2003 12:36:48 +0000 (08:36 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Tue, 19 Aug 2003 12:36:48 +0000 (08:36 -0400)
(Thanks to Gombas Gabor for pointing this out, addresses
Debian bug #204332)

lib/et/ChangeLog
lib/et/et_h.awk

index 5f3095c..e3d53bd 100644 (file)
@@ -1,3 +1,9 @@
+2003-08-19  Theodore Ts'o  <tytso@mit.edu>
+
+       * 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 <pthomas@suse.de>
 
        * et_c.awk, et_h.awk: Add Heimdal compile_et extensions
index f598393..73caffc 100644 (file)
@@ -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 " (" \