summaryrefslogtreecommitdiff
path: root/lib/et
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2003-11-22 13:54:38 -0500
committerTheodore Ts'o <tytso@mit.edu>2003-11-22 13:54:38 -0500
commit8ce230959ce99e02da84f1d1fba76c78eafce3f3 (patch)
tree137ce2f97c87584850eb45423b00dacb02c14e59 /lib/et
parentf419fdf536d923afccdca0b4351ea070d3df55d7 (diff)
downloade2fsprogs-8ce230959ce99e02da84f1d1fba76c78eafce3f3.tar.gz
com_err.h: Retore the type of n_msgs in the error_table
structure to "int" from "unsigned int" fix a core dumping bug in the com_right() function. (Addresses Debian bug #213450)
Diffstat (limited to 'lib/et')
-rw-r--r--lib/et/ChangeLog7
-rw-r--r--lib/et/com_err.h2
2 files changed, 8 insertions, 1 deletions
diff --git a/lib/et/ChangeLog b/lib/et/ChangeLog
index 7b4a8ba5..91a47521 100644
--- a/lib/et/ChangeLog
+++ b/lib/et/ChangeLog
@@ -1,3 +1,10 @@
+2003-11-22 Theodore Ts'o <tytso@mit.edu>
+
+ * com_err.h: Retore the type of n_msgs in the error_table
+ structure to "int" from "unsigned int" fix a core dumping
+ bug in the com_right() function. (Addresses Debian bug
+ #213450)
+
2003-08-20 Theodore Ts'o <tytso@mit.edu>
* Makefile.in: Delete com_err.info on a make clean
diff --git a/lib/et/com_err.h b/lib/et/com_err.h
index 1f343722..60494c2f 100644
--- a/lib/et/com_err.h
+++ b/lib/et/com_err.h
@@ -17,7 +17,7 @@ typedef long errcode_t;
struct error_table {
char const * const * msgs;
long base;
- unsigned int n_msgs;
+ int n_msgs;
};
struct et_list;