Documentation: Clarify sizes for UI_add_input_string()
authorRichard Levitte <levitte@openssl.org>
Mon, 16 May 2016 13:39:50 +0000 (15:39 +0200)
committerRichard Levitte <levitte@openssl.org>
Mon, 16 May 2016 16:34:45 +0000 (18:34 +0200)
The given sizes to not include the final NUL character.

RT#2622

Reviewed-by: Matt Caswell <matt@openssl.org>
doc/crypto/ui.pod

index f03e9895613c5683e7934f614cdd0426cf7fa5d5..bd4e396ab9cda2c5020c1a7fac9df8217fe7aeab 100644 (file)
@@ -110,12 +110,12 @@ If B<ui> is NULL nothing is done.
 
 UI_add_input_string() and UI_add_verify_string() add a prompt to the UI,
 as well as flags and a result buffer and the desired minimum and maximum
-sizes of the result.  The given information is used to prompt for
-information, for example a password, and to verify a password (i.e. having
-the user enter it twice and check that the same string was entered twice).
-UI_add_verify_string() takes and extra argument that should be a pointer
-to the result buffer of the input string that it's supposed to verify, or
-verification will fail.
+sizes of the result, not counting the final NUL character.  The given
+information is used to prompt for information, for example a password,
+and to verify a password (i.e. having the user enter it twice and check
+that the same string was entered twice).  UI_add_verify_string() takes
+and extra argument that should be a pointer to the result buffer of the
+input string that it's supposed to verify, or verification will fail.
 
 UI_add_input_boolean() adds a prompt to the UI that's supposed to be answered
 in a boolean way, with a single character for yes and a different character