aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJakub Jelen <jjelen@redhat.com>2020-05-21 11:44:50 +0200
committerJakub Jelen <jjelen@redhat.com>2020-05-21 13:34:23 +0200
commit39bb93a53b77c9362a9ffa804ed49f47ab73108e (patch)
tree254b9a1486ed37d3377833a03e322684c208223d /src
parent4e4711d2fbe7ff5f33361c991d584e1c89ad893d (diff)
downloadlibssh-39bb93a53b77c9362a9ffa804ed49f47ab73108e.tar.gz
libssh-39bb93a53b77c9362a9ffa804ed49f47ab73108e.tar.xz
libssh-39bb93a53b77c9362a9ffa804ed49f47ab73108e.zip
options: Do not reference non-existing function
Fixes T227 Signed-off-by: Jakub Jelen <jjelen@redhat.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'src')
-rw-r--r--src/options.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/options.c b/src/options.c
index b2aeba89..692fc837 100644
--- a/src/options.c
+++ b/src/options.c
@@ -1370,7 +1370,7 @@ int ssh_options_getopt(ssh_session session, int *argcptr, char **argv)
*
* This should be the last call of all options, it may overwrite options which
* are already set. It requires that the host name is already set with
- * ssh_options_set_host().
+ * ssh_options_set(SSH_OPTIONS_HOST).
*
* @param session SSH session handle
*
@@ -1379,7 +1379,7 @@ int ssh_options_getopt(ssh_session session, int *argcptr, char **argv)
*
* @return 0 on success, < 0 on error.
*
- * @see ssh_options_set_host()
+ * @see ssh_options_set()
*/
int ssh_options_parse_config(ssh_session session, const char *filename) {
char *expanded_filename;