One forgotten function.
authorRichard Levitte <levitte@openssl.org>
Wed, 11 Jul 2001 07:10:43 +0000 (07:10 +0000)
committerRichard Levitte <levitte@openssl.org>
Wed, 11 Jul 2001 07:10:43 +0000 (07:10 +0000)
crypto/ui/ui_lib.c

index 5bb0efd7eb614b871f771b657a286ad95b5e3a16..00abeb0e552db9213562b027e3c0cd47f0d9f288 100644 (file)
@@ -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)