tests: Flush stdout in the fake pinentry.

* tests/openpgp/fake-pinentry.c (reply): Flush stdout.

Fixes-commit: 94504b3d5a
Signed-off-by: Justus Winter <justus@g10code.com>
This commit is contained in:
Justus Winter 2016-10-20 16:50:11 +02:00
parent 8c7c4faf3d
commit ca9597f080
1 changed files with 1 additions and 0 deletions

View File

@ -42,6 +42,7 @@ reply (const char *fmt, ...)
result = vprintf (fmt, ap);
va_end (ap);
fflush (stdout);
return result;
}