diff options
author | schwarze <> | 2017-01-06 18:46:38 +0000 |
---|---|---|
committer | schwarze <> | 2017-01-06 18:46:38 +0000 |
commit | afe018d032b878d08044e3f67068e11cefc2de5a (patch) | |
tree | 6f2e6569948b90fdd733685d571b529ba62d6403 | |
parent | 5e8c012e1b493ffe821b40de0e3b704a5bc6d394 (diff) | |
download | openbsd-afe018d032b878d08044e3f67068e11cefc2de5a.tar.gz openbsd-afe018d032b878d08044e3f67068e11cefc2de5a.tar.bz2 openbsd-afe018d032b878d08044e3f67068e11cefc2de5a.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-- | src/lib/libcrypto/man/UI_new.3 | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/lib/libcrypto/man/UI_new.3 b/src/lib/libcrypto/man/UI_new.3 index 959054d7c3..0974b00b02 100644 --- a/src/lib/libcrypto/man/UI_new.3 +++ b/src/lib/libcrypto/man/UI_new.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: UI_new.3,v 1.4 2016/12/04 12:56:40 schwarze Exp $ | 1 | .\" $OpenBSD: UI_new.3,v 1.5 2017/01/06 18:46:38 schwarze Exp $ |
2 | .\" OpenSSL 99d63d46 Oct 26 13:56:48 2016 -0400 | 2 | .\" OpenSSL 99d63d46 Oct 26 13:56:48 2016 -0400 |
3 | .\" | 3 | .\" |
4 | .\" This file was written by Richard Levitte <levitte@openssl.org>. | 4 | .\" This file was written by Richard Levitte <levitte@openssl.org>. |
@@ -48,7 +48,7 @@ | |||
48 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | 48 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
49 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | 49 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. |
50 | .\" | 50 | .\" |
51 | .Dd $Mdocdate: December 4 2016 $ | 51 | .Dd $Mdocdate: January 6 2017 $ |
52 | .Dt UI_NEW 3 | 52 | .Dt UI_NEW 3 |
53 | .Os | 53 | .Os |
54 | .Sh NAME | 54 | .Sh NAME |
@@ -79,8 +79,6 @@ | |||
79 | .Nd New User Interface | 79 | .Nd New User Interface |
80 | .Sh SYNOPSIS | 80 | .Sh SYNOPSIS |
81 | .In openssl/ui.h | 81 | .In openssl/ui.h |
82 | .Fd typedef struct ui_st UI; | ||
83 | .Fd typedef struct ui_method_st UI_METHOD; | ||
84 | .Ft UI * | 82 | .Ft UI * |
85 | .Fn UI_new void | 83 | .Fn UI_new void |
86 | .Ft UI * | 84 | .Ft UI * |
@@ -230,8 +228,12 @@ | |||
230 | .Sh DESCRIPTION | 228 | .Sh DESCRIPTION |
231 | UI stands for User Interface, and is a general purpose set of routines | 229 | UI stands for User Interface, and is a general purpose set of routines |
232 | to prompt the user for text-based information. | 230 | to prompt the user for text-based information. |
233 | Through user-written methods (see | 231 | Through user-written methods (see the functions |
234 | .Xr ui_create 3 ) , | 232 | .Fn UI_create_method |
233 | and | ||
234 | .Fn UI_method_set_* | ||
235 | declared in | ||
236 | .In openssl/ui.h ) , | ||
235 | prompting can be done in any way imaginable, be it plain text prompting, | 237 | prompting can be done in any way imaginable, be it plain text prompting, |
236 | through dialog boxes or from a cell phone. | 238 | through dialog boxes or from a cell phone. |
237 | .Pp | 239 | .Pp |