From fbdbf70363c56f2d3f3ed7c93e03284451a0aab5 Mon Sep 17 00:00:00 2001 From: Ezra Peisach Date: Mon, 12 Mar 2001 00:15:55 +0000 Subject: [PATCH] * 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 --- src/util/et/ChangeLog | 5 +++++ src/util/et/com_err.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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; }; -- 2.26.2