projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
567671e
)
One forgotten function.
author
Richard Levitte
<levitte@openssl.org>
Wed, 11 Jul 2001 07:10:43 +0000
(07:10 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Wed, 11 Jul 2001 07:10:43 +0000
(07:10 +0000)
crypto/ui/ui_lib.c
patch
|
blob
|
history
diff --git
a/crypto/ui/ui_lib.c
b/crypto/ui/ui_lib.c
index 5bb0efd7eb614b871f771b657a286ad95b5e3a16..00abeb0e552db9213562b027e3c0cd47f0d9f288 100644
(file)
--- 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)