From 5bf9b4cd511c782e7f4c727520b267263690fb8a Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Tue, 19 Jul 2005 08:24:59 -0500 Subject: [PATCH] Fix com_err bug in compile_et: # of error messages can be wrong Fixed bug where error messages using continuations wouldn't increment the message count. Signed-off-by: "Theodore Ts'o" --- lib/et/ChangeLog | 5 +++++ lib/et/et_c.awk | 1 + 2 files changed, 6 insertions(+) diff --git a/lib/et/ChangeLog b/lib/et/ChangeLog index 3881c00f..7505fa86 100644 --- a/lib/et/ChangeLog +++ b/lib/et/ChangeLog @@ -1,3 +1,8 @@ +2005-07-19 Theodore Ts'o + + * et_c.awk: Fix bug where error messages using continuations + wouldn't increment the message count. + 2006-06-30 Theodore Ts'o * Release of E2fsprogs 1.38 diff --git a/lib/et/et_c.awk b/lib/et/et_c.awk index 407c43cc..ea2e6095 100644 --- a/lib/et/et_c.awk +++ b/lib/et/et_c.awk @@ -174,6 +174,7 @@ c2n["_"]=63 text=substr(text,2,length(text)-2); # printf "\t%s\"\n", text > outfile cont_buf=text + table_item_count++ continuation++; }