From: Ezra Peisach Date: Mon, 12 Mar 2001 00:15:55 +0000 (+0000) Subject: * com_err.h: For struct error_table, change the base from an X-Git-Tag: krb5-1.3-alpha1~1623 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fbdbf70363c56f2d3f3ed7c93e03284451a0aab5;p=krb5.git * com_err.h: For struct error_table, change the base from an unsigned to signed long (error messages and tables are signed) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13075 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/util/et/ChangeLog b/src/util/et/ChangeLog index a49f27330..d27c224de 100644 --- a/src/util/et/ChangeLog +++ b/src/util/et/ChangeLog @@ -1,3 +1,8 @@ +2001-03-11 Ezra Peisach + + * com_err.h: For struct error_table, change the base from an + unsigned to signed long (error messages and tables are signed) + 2001-03-07 Ken Raeburn * test_et.c (main): Only use sys_nerr tests if HAVE_SYS_ERRLIST. diff --git a/src/util/et/com_err.h b/src/util/et/com_err.h index 4e519ccb0..0ac8b2846 100644 --- a/src/util/et/com_err.h +++ b/src/util/et/com_err.h @@ -41,7 +41,7 @@ typedef void (*et_old_error_hook_func) (const char FAR *, errcode_t, struct error_table { /*@shared@*/ char const FAR * const FAR * msgs; - unsigned long base; + long base; unsigned int n_msgs; };