initialize_error_table -> initialize_error_table_r

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@4127 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1997-12-05 04:24:53 +00:00
parent 044d36f347
commit a20dd63694
5 changed files with 11 additions and 11 deletions

View File

@@ -49,7 +49,7 @@ struct error_table {
};
const char *com_right(struct error_table *list, long code);
void initialize_error_table(struct error_table**, const char**, int, long);
void initialize_error_table_r(struct error_table**, const char**, int, long);
void free_error_table(struct error_table*);
#endif /* __ERROR_H__ */

View File

@@ -57,10 +57,10 @@ com_right(struct error_table *list, long code)
}
void
initialize_error_table(struct error_table **list,
const char **messages,
int num_errors,
long base)
initialize_error_table_r(struct error_table **list,
const char **messages,
int num_errors,
long base)
{
struct error_table *et;
for(et = *list; et; et = et->next)

View File

@@ -49,7 +49,7 @@ struct error_table {
};
const char *com_right(struct error_table *list, long code);
void initialize_error_table(struct error_table**, const char**, int, long);
void initialize_error_table_r(struct error_table**, const char**, int, long);
void free_error_table(struct error_table*);
#endif /* __ERROR_H__ */

View File

@@ -57,10 +57,10 @@ com_right(struct error_table *list, long code)
}
void
initialize_error_table(struct error_table **list,
const char **messages,
int num_errors,
long base)
initialize_error_table_r(struct error_table **list,
const char **messages,
int num_errors,
long base)
{
struct error_table *et;
for(et = *list; et; et = et->next)

View File

@@ -49,7 +49,7 @@ struct error_table {
};
const char *com_right(struct error_table *list, long code);
void initialize_error_table(struct error_table**, const char**, int, long);
void initialize_error_table_r(struct error_table**, const char**, int, long);
void free_error_table(struct error_table*);
#endif /* __ERROR_H__ */