summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>2001-03-12 00:15:55 +0000
committerEzra Peisach <epeisach@mit.edu>2001-03-12 00:15:55 +0000
commitfbdbf70363c56f2d3f3ed7c93e03284451a0aab5 (patch)
tree36ab38057deee0ee1465d3b12daf999545599c42 /src
parent940d9b6dbab9883ad4eac75aba640ca7b42eae3e (diff)
* 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
Diffstat (limited to 'src')
-rw-r--r--src/util/et/ChangeLog5
-rw-r--r--src/util/et/com_err.h2
2 files changed, 6 insertions, 1 deletions
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 <epeisach@mit.edu>
+
+ * 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 <raeburn@mit.edu>
* 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;
};