1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-30 13:01:23 +03:00

misc: reindent ssh_analyze_banner, update docs

No changes to code, only whitespace indentation and
an update to the function docs.

Signed-off-by: Jon Simons <jon@jonsimons.org>
Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
Jon Simons
2017-07-11 18:57:26 -04:00
committed by Andreas Schneider
parent 14d8e940e6
commit a97db12f4f

View File

@@ -780,8 +780,7 @@ char *ssh_path_expand_escape(ssh_session session, const char *s) {
/** /**
* @internal * @internal
* *
* @brief Analyze the SSH banner to find out if we have a SSHv1 or SSHv2 * @brief Analyze the SSH banner to extract version information.
* server.
* *
* @param session The session to analyze the banner from. * @param session The session to analyze the banner from.
* @param server 0 means we are a client, 1 a server. * @param server 0 means we are a client, 1 a server.
@@ -790,7 +789,7 @@ char *ssh_path_expand_escape(ssh_session session, const char *s) {
* *
* @return 0 on success, < 0 on error. * @return 0 on success, < 0 on error.
* *
* @see ssh_get_banner() * @see ssh_get_issue_banner()
*/ */
int ssh_analyze_banner(ssh_session session, int server, int *ssh1, int *ssh2) { int ssh_analyze_banner(ssh_session session, int server, int *ssh1, int *ssh2) {
const char *banner; const char *banner;
@@ -877,7 +876,6 @@ int ssh_analyze_banner(ssh_session session, int server, int *ssh1, int *ssh2) {
} }
} }
return 0; return 0;
} }