Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
2000-11-25  Ulrich Drepper  <drepper@redhat.com>

	* iconv/gconv_conf.c (read_conf_file): Make mod_counter static to
	preserve value over different gconv-modules files.
  • Loading branch information
Ulrich Drepper committed Nov 25, 2000
1 parent 2a068d2 commit 03fb20b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2000-11-25 Ulrich Drepper <drepper@redhat.com>

* iconv/gconv_conf.c (read_conf_file): Make mod_counter static to
preserve value over different gconv-modules files.

2000-11-24 Ulrich Drepper <drepper@redhat.com>

* locale/findlocale.c: Add casts to avoid warnings.
Expand Down
2 changes: 1 addition & 1 deletion iconv/gconv_conf.c
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ read_conf_file (const char *filename, const char *directory, size_t dir_len,
FILE *fp = fopen (filename, "r");
char *line = NULL;
size_t line_len = 0;
int modcounter = 0;
static int modcounter;

/* Don't complain if a file is not present or readable, simply silently
ignore it. */
Expand Down

0 comments on commit 03fb20b

Please sign in to comment.