diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-09-30 08:56:32 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-09-30 08:56:32 +0000 |
commit | c4f4ef871927b78f3c9a65cb34c95ced96e346e8 (patch) | |
tree | 1c370d562716e7bebcad530169cdb31b886393e9 | |
parent | 366778e93f9796e895bc97fcadb691f497dd4b98 (diff) | |
download | glibc-c4f4ef871927b78f3c9a65cb34c95ced96e346e8.tar.gz glibc-c4f4ef871927b78f3c9a65cb34c95ced96e346e8.tar.xz glibc-c4f4ef871927b78f3c9a65cb34c95ced96e346e8.zip |
Update.
* iconv/iconv_prog.c (main): Print progress information to stderr.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | iconv/iconv_prog.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 8df6b1977c..918cd9daaa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2004-09-30 Ulrich Drepper <drepper@redhat.com> + * iconv/iconv_prog.c (main): Print progress information to stderr. + * nscd/nscd.c (termination_handler): Reset timestamp so that clients immediately stop using the database. diff --git a/iconv/iconv_prog.c b/iconv/iconv_prog.c index 26b3c24f31..86852857a3 100644 --- a/iconv/iconv_prog.c +++ b/iconv/iconv_prog.c @@ -283,7 +283,7 @@ conversion from `%s' and to `%s' are not supported"), int fd, ret; if (verbose) - printf ("%s:\n", argv[remaining]); + fprintf (stderr, "%s:\n", argv[remaining]); if (strcmp (argv[remaining], "-") == 0) fd = 0; else |