diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-07-25 21:00:58 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-07-25 21:00:58 +0000 |
commit | ba915a38078a0765ad1e895fa7e6ca38e86ac3f8 (patch) | |
tree | fb5185786e78aabae24b3162678fedbf6a421052 | |
parent | a2cb734f5d785b1725437c7bf59a168ab3fbfb4d (diff) | |
download | glibc-ba915a38078a0765ad1e895fa7e6ca38e86ac3f8.tar.gz glibc-ba915a38078a0765ad1e895fa7e6ca38e86ac3f8.tar.xz glibc-ba915a38078a0765ad1e895fa7e6ca38e86ac3f8.zip |
Update.
* iconv/iconvconfig.c (main): Don't write an output file if we have seen an error.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | iconv/iconvconfig.c | 7 |
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 5fac726d1c..bb4c383b2e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2001-07-25 Ulrich Drepper <drepper@redhat.com> + * iconv/iconvconfig.c (main): Don't write an output file if we + have seen an error. + * iconv/Makefile (install-bin): Add iconvconfig. 2001-07-25 Jakub Jelinek <jakub@redhat.com> diff --git a/iconv/iconvconfig.c b/iconv/iconvconfig.c index e0811d422a..379a3bf945 100644 --- a/iconv/iconvconfig.c +++ b/iconv/iconvconfig.c @@ -301,8 +301,11 @@ main (int argc, char *argv[]) about them. */ generate_name_info (); - /* Write the output file. */ - status = write_output (); + /* Write the output file, but only if we haven't seen any error. */ + if (status == 0) + status = write_output (); + else + fputs ("No output written!\n", stderr); return status; } |