summaryrefslogtreecommitdiffstats
path: root/crypto/ui
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-07-11 07:10:43 +0000
committerRichard Levitte <levitte@openssl.org>2001-07-11 07:10:43 +0000
commit103a434386d1b40315c0c36a9956703aac4e38d2 (patch)
tree6bdf9648e027068eb2c1ba535c2f075175e15013 /crypto/ui
parent567671e291ba7fa7bc78fc8246e95dff604de1fc (diff)
One forgotten function.
Diffstat (limited to 'crypto/ui')
-rw-r--r--crypto/ui/ui_lib.c8
1 files changed, 8 insertions, 0 deletions
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)