diff options
author | 2017-01-06 18:46:38 +0000 | |
---|---|---|
committer | 2017-01-06 18:46:38 +0000 | |
commit | a0589f6e6146569d405b49ad5020e913c20f59ec (patch) | |
tree | 822c8cc6fd92e729ac312f2ed7c8d6e461d4d3ae | |
parent | Remove dangling .Xrs to PKCS7_final(3) reported by jmc@ (diff) | |
download | wireguard-openbsd-a0589f6e6146569d405b49ad5020e913c20f59ec.tar.xz wireguard-openbsd-a0589f6e6146569d405b49ad5020e913c20f59ec.zip |
Remove bogus cross reference to ui_create(3) reported by jmc@
and refer readers to the header file instead.
I'm not convinced customized prompting is such a bright idea, it
feels somewhat like overengineering, so i'm not documenting it right
now. People who really feel compelled to roll their own prompting
can go read the source code.
-rw-r--r-- | lib/libcrypto/man/UI_new.3 | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/libcrypto/man/UI_new.3 b/lib/libcrypto/man/UI_new.3 index 959054d7c3b..0974b00b02b 100644 --- a/lib/libcrypto/man/UI_new.3 +++ b/lib/libcrypto/man/UI_new.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: UI_new.3,v 1.4 2016/12/04 12:56:40 schwarze Exp $ +.\" $OpenBSD: UI_new.3,v 1.5 2017/01/06 18:46:38 schwarze Exp $ .\" OpenSSL 99d63d46 Oct 26 13:56:48 2016 -0400 .\" .\" This file was written by Richard Levitte <levitte@openssl.org>. @@ -48,7 +48,7 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED .\" OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: December 4 2016 $ +.Dd $Mdocdate: January 6 2017 $ .Dt UI_NEW 3 .Os .Sh NAME @@ -79,8 +79,6 @@ .Nd New User Interface .Sh SYNOPSIS .In openssl/ui.h -.Fd typedef struct ui_st UI; -.Fd typedef struct ui_method_st UI_METHOD; .Ft UI * .Fn UI_new void .Ft UI * @@ -230,8 +228,12 @@ .Sh DESCRIPTION UI stands for User Interface, and is a general purpose set of routines to prompt the user for text-based information. -Through user-written methods (see -.Xr ui_create 3 ) , +Through user-written methods (see the functions +.Fn UI_create_method +and +.Fn UI_method_set_* +declared in +.In openssl/ui.h ) , prompting can be done in any way imaginable, be it plain text prompting, through dialog boxes or from a cell phone. .Pp |