mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2025-01-27 02:43:56 +08:00
et_c.awk: Add declaration of the Heimdal initialization routine
to avoid gcc -Wall complaints Rename test cases to spell Heimdal correctly (only one 'l').
This commit is contained in:
parent
2540bb79b7
commit
52501d440d
@ -1,3 +1,8 @@
|
||||
2003-11-28 Theodore Ts'o <tytso@mit.edu>
|
||||
|
||||
* et_c.awk: Add declaration of the Heimdal initialization routine
|
||||
to avoid gcc -Wall complaints
|
||||
|
||||
2003-11-26 Theodore Ts'o <tytso@mit.edu>
|
||||
|
||||
* com_err.h, com_err.c: Use GCC attributes to mark com_err and
|
||||
|
@ -245,6 +245,8 @@ END {
|
||||
print "}" > outfile
|
||||
print "" > outfile
|
||||
print "/* For Heimdal compatibility */" > outfile
|
||||
print "void initialize_" table_name "_error_table_r(struct et_list **list);" > outfile
|
||||
print "" > outfile
|
||||
print "void initialize_" table_name "_error_table_r(struct et_list **list)" > outfile
|
||||
print "{" > outfile
|
||||
print " struct et_list *et, **end;" > outfile
|
||||
|
@ -36,6 +36,8 @@ void initialize_ovk_error_table(void) {
|
||||
}
|
||||
|
||||
/* For Heimdal compatibility */
|
||||
void initialize_ovk_error_table_r(struct et_list **list);
|
||||
|
||||
void initialize_ovk_error_table_r(struct et_list **list)
|
||||
{
|
||||
struct et_list *et, **end;
|
||||
|
@ -37,6 +37,8 @@ void initialize_h3test_error_table(void) {
|
||||
}
|
||||
|
||||
/* For Heimdal compatibility */
|
||||
void initialize_h3test_error_table_r(struct et_list **list);
|
||||
|
||||
void initialize_h3test_error_table_r(struct et_list **list)
|
||||
{
|
||||
struct et_list *et, **end;
|
||||
|
@ -57,6 +57,8 @@ void initialize_krb_error_table(void) {
|
||||
}
|
||||
|
||||
/* For Heimdal compatibility */
|
||||
void initialize_krb_error_table_r(struct et_list **list);
|
||||
|
||||
void initialize_krb_error_table_r(struct et_list **list)
|
||||
{
|
||||
struct et_list *et, **end;
|
||||
|
Loading…
Reference in New Issue
Block a user