mirror of https://github.com/openssl/openssl.git
One forgotten function.
This commit is contained in:
parent
567671e291
commit
103a434386
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue