* com_err.h: For struct error_table, change the base from an
authorEzra Peisach <epeisach@mit.edu>
Mon, 12 Mar 2001 00:15:55 +0000 (00:15 +0000)
committerEzra Peisach <epeisach@mit.edu>
Mon, 12 Mar 2001 00:15:55 +0000 (00:15 +0000)
        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
src/util/et/com_err.h

index a49f27330df5507c3275ce82a984654f5a2db6bd..d27c224def093bb0dd46863748cfa9f170be6ec2 100644 (file)
@@ -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.
index 4e519ccb0bb018e0ce13566256c42f1a336f4cea..0ac8b284630c9be7aecf2c0ea5493319c718fe5f 100644 (file)
@@ -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;
 };