1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-12-08 03:42:12 +03:00

Fix docstring for ssh_userauth_kbdint_getanswer()

This incorrectly stated that it would return an integer value instead of a
string.

Signed-off-by: James Wrigley <james@puiterwijk.org>
Reviewed-by: Jakub Jelen <jjelen@redhat.com>
This commit is contained in:
JamesWrigley
2024-01-05 12:53:11 +01:00
committed by Jakub Jelen
parent 3fa6c1639e
commit 9cf3d79abc

View File

@@ -2210,7 +2210,8 @@ int ssh_userauth_kbdint_getnanswers(ssh_session session)
*
* @param[in] i index The number of the ith answer.
*
* @return 0 on success, < 0 on error.
* @return The answer string, or NULL if the answer is not
* available. Do not free the string.
*/
const char *ssh_userauth_kbdint_getanswer(ssh_session session, unsigned int i)
{