]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Sun, 4 Feb 2001 06:04:08 +0000 (06:04 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 4 Feb 2001 06:04:08 +0000 (06:04 +0000)
* 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.

ChangeLog
iconv/iconv_prog.c

index 4f88f316f5916cddacf2b1b2d2f4f94e6a334d11..92f6d41411b163babb4e8e2884be8553e647e889 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
index 3c7851f7a582f8b2f8016850ce90f42b2eb99779..6b9930e50aa015a904d9b559f3d22491e8c3637d 100644 (file)
@@ -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)
This page took 1.795638 seconds and 5 git commands to generate.