From: Richard Levitte Date: Wed, 11 Jul 2001 07:10:43 +0000 (+0000) Subject: One forgotten function. X-Git-Tag: OpenSSL_0_9_6c~182^2~30 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=103a434386d1b40315c0c36a9956703aac4e38d2;p=oweals%2Fopenssl.git One forgotten function. --- diff --git a/crypto/ui/ui_lib.c b/crypto/ui/ui_lib.c index 5bb0efd7eb..00abeb0e55 100644 --- a/crypto/ui/ui_lib.c +++ b/crypto/ui/ui_lib.c @@ -706,6 +706,14 @@ int (*UI_method_get_writer(UI_METHOD *method))(UI*,UI_STRING*) return NULL; } +int (*UI_method_get_flusher(UI_METHOD *method))(UI*) + { + if (method) + return method->ui_flush; + else + return NULL; + } + int (*UI_method_get_reader(UI_METHOD *method))(UI*,UI_STRING*) { if (method)