[INPUT] Replace open-coded flushall in preadbuffer
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
diff --git a/ChangeLog b/ChangeLog
index 379672f..e6d6cbf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
* Add printf support for format string a, A, and F.
* Handle embedded NULs correctly in printf.
+ * Replace open-coded flushall in preadbuffer.
2014-10-13 Eric Blake <eblake@redhat.com>
diff --git a/src/input.c b/src/input.c
index 9e533a4..f11ac84 100644
--- a/src/input.c
+++ b/src/input.c
@@ -245,10 +245,7 @@
}
if (unlikely(parsenleft == EOF_NLEFT || parsefile->buf == NULL))
return PEOF;
- flushout(&output);
-#ifdef FLUSHERR
- flushout(&errout);
-#endif
+ flushall();
more = parselleft;
if (more <= 0) {