1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-08-07 08:02:56 +03:00

Fix doc comments.

This commit is contained in:
Daiki Ueno
2009-12-23 09:12:31 +09:00
parent 3138b5891f
commit bbb2f29037
2 changed files with 11 additions and 20 deletions

View File

@@ -909,9 +909,7 @@ libssh2_agent_init(LIBSSH2_SESSION *session);
*
* Connect to an ssh-agent.
*
* Returns:
* NULL if no ssh-agent is running, or failed to connect
* a pointer to a LIBSSH2_AGENT if successfully connected
* Returns 0 if succeeded, or a negative value for error.
*/
LIBSSH2_API int
libssh2_agent_connect(LIBSSH2_AGENT *agent);
@@ -919,7 +917,7 @@ libssh2_agent_connect(LIBSSH2_AGENT *agent);
/*
* libssh2_agent_list_identities()
*
* Request ssh-agent to list identities.
* Request an ssh-agent to list identities.
*
* Returns 0 if succeeded, or a negative value for error.
*/
@@ -960,9 +958,7 @@ libssh2_agent_userauth(LIBSSH2_AGENT *agent,
*
* Close a connection to an ssh-agent.
*
* Returns:
* NULL if no ssh-agent is running, or failed to connect
* a pointer to a LIBSSH2_AGENT if successfully connected
* Returns 0 if succeeded, or a negative value for error.
*/
LIBSSH2_API int
libssh2_agent_disconnect(LIBSSH2_AGENT *agent);
@@ -970,10 +966,10 @@ libssh2_agent_disconnect(LIBSSH2_AGENT *agent);
/*
* libssh2_agent_free()
*
* Free a connection to an ssh-agent. This function also frees the
* internal list of public keys.
* Free an ssh-agent handle. This function also frees the internal
* collection of public keys.
*/
LIBSSH2_API int
LIBSSH2_API void
libssh2_agent_free(LIBSSH2_AGENT *agent);
/* NOTE NOTE NOTE