From: Bruno Haible Date: Mon, 12 Nov 2001 12:30:36 +0000 (+0000) Subject: Fix a stupid typo bug. X-Git-Tag: v0.11~307 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=77ff8e10e55f12c39118f7dba36c1adb1ae92e77;p=thirdparty%2Fgettext.git Fix a stupid typo bug. --- diff --git a/src/ChangeLog b/src/ChangeLog index ed924bb56..58e9e8e03 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2001-11-11 Bruno Haible + + * msgl-cat.c (catenate_msgdomain_list): Fix a typo in 2001-11-01 patch. + Reported by Karl Eichwalder. + 2001-11-11 Bruno Haible * msginit.c (verbose): Remove variable. diff --git a/src/msgl-cat.c b/src/msgl-cat.c index d90f5689d..f81baf000 100644 --- a/src/msgl-cat.c +++ b/src/msgl-cat.c @@ -670,7 +670,7 @@ To select a different output encoding, use the --to-code option.\n\ message_comment_append (tmp, tmp->alternative[i].id); for (l = 0; l < slp->nitems; l++) - message_comment_append (tmp, slp->item[i]); + message_comment_append (tmp, slp->item[l]); } } @@ -698,7 +698,7 @@ To select a different output encoding, use the --to-code option.\n\ message_comment_dot_append (tmp, tmp->alternative[i].id); for (l = 0; l < slp->nitems; l++) - message_comment_dot_append (tmp, slp->item[i]); + message_comment_dot_append (tmp, slp->item[l]); } } }