diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/krb5/ChangeLog | 3 | ||||
| -rw-r--r-- | src/lib/krb5/krb5_libinit.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/krb5/ChangeLog b/src/lib/krb5/ChangeLog index d8860e24e..5e621515a 100644 --- a/src/lib/krb5/ChangeLog +++ b/src/lib/krb5/ChangeLog @@ -2,8 +2,9 @@ * krb5_libinit.c (initialized): Variable deleted, all references removed. - (krb5int_lib_init): Initialize error tables here. + (krb5int_lib_init): Initialize error tables here, including k524. (krb5int_initialize_library): Don't do it here. + (krb5int_lib_fini): Remove k524 error table too. 2004-05-27 Ezra Peisach <epeisach@mit.edu> diff --git a/src/lib/krb5/krb5_libinit.c b/src/lib/krb5/krb5_libinit.c index 9137c685e..e8843de09 100644 --- a/src/lib/krb5/krb5_libinit.c +++ b/src/lib/krb5/krb5_libinit.c @@ -35,6 +35,7 @@ int krb5int_lib_init(void) add_error_table(&et_kv5m_error_table); add_error_table(&et_kdb5_error_table); add_error_table(&et_asn1_error_table); + add_error_table(&et_k524_error_table); #endif err = krb5int_rc_finish_init(); @@ -77,6 +78,7 @@ void krb5int_lib_fini(void) remove_error_table(&et_kv5m_error_table); remove_error_table(&et_kdb5_error_table); remove_error_table(&et_asn1_error_table); + remove_error_table(&et_k524_error_table); #endif } |
