diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-02-04 06:04:08 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-02-04 06:04:08 +0000 |
commit | 377c725f8e2dba91af36af27206e6deb85cf6e6f (patch) | |
tree | a3025da6be5493c453a2fe5efc53a7872868914c | |
parent | b3c3fe4287b866ad23c3dc24e8fa67c1d6c3f655 (diff) | |
download | glibc-377c725f8e2dba91af36af27206e6deb85cf6e6f.zip glibc-377c725f8e2dba91af36af27206e6deb85cf6e6f.tar.gz glibc-377c725f8e2dba91af36af27206e6deb85cf6e6f.tar.bz2 |
Update.
* iconv/iconv_prog.c (main): If output file name is "-" write to
stdout.
(main): If -f or -t argument is missing use charset of the current
locale.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | iconv/iconv_prog.c | 2 |
2 files changed, 5 insertions, 3 deletions
@@ -1,7 +1,9 @@ 2001-02-03 Ulrich Drepper <drepper@redhat.com> - * iconv/iconv_prog.c (main): If -f or -t argument is missing use - charset of the current locale. + * iconv/iconv_prog.c (main): If output file name is "-" write to + stdout. + (main): If -f or -t argument is missing use charset of the current + locale. 2001-02-03 Andreas Jaeger <aj@suse.de> diff --git a/iconv/iconv_prog.c b/iconv/iconv_prog.c index 3c7851f..6b9930e 100644 --- a/iconv/iconv_prog.c +++ b/iconv/iconv_prog.c @@ -193,7 +193,7 @@ main (int argc, char *argv[]) } /* Determine output file. */ - if (output_file != NULL) + if (output_file != NULL && strcmp (output_file, "-") != 0) { output = fopen (output_file, "w"); if (output == NULL) |