aboutsummaryrefslogtreecommitdiff
path: root/include/libssh/session.h
diff options
context:
space:
mode:
authorJakub Jelen <jjelen@redhat.com>2019-11-01 14:59:27 +0100
committerAndreas Schneider <asn@cryptomilk.org>2019-11-18 11:59:01 +0100
commitc8a621c6063f205e631d83a8ccd4befc60056e93 (patch)
treea22b2067f408fb2b8d9dadfd0bb3b4d84dc785f6 /include/libssh/session.h
parentec67ad47ebe200ad8a6b508e8ca061a073a3fde1 (diff)
downloadlibssh-c8a621c6063f205e631d83a8ccd4befc60056e93.tar.gz
libssh-c8a621c6063f205e631d83a8ccd4befc60056e93.tar.xz
libssh-c8a621c6063f205e631d83a8ccd4befc60056e93.zip
Use only one variable denoting the size of methods arrays
Previously, there was non-consistent usage of constans SSH_KEX_METHODS, KEX_METHODS_SIZE and of magic number 10 to reference the arrays used for algorithm negotiation by peers. This commit settles down to the single constant and its usage throughout the whole codebase. Fixes T195 Signed-off-by: Jakub Jelen <jjelen@redhat.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'include/libssh/session.h')
-rw-r--r--include/libssh/session.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libssh/session.h b/include/libssh/session.h
index af02237d..22256150 100644
--- a/include/libssh/session.h
+++ b/include/libssh/session.h
@@ -213,7 +213,7 @@ struct ssh_session_struct {
char *sshdir;
char *knownhosts;
char *global_knownhosts;
- char *wanted_methods[10];
+ char *wanted_methods[SSH_KEX_METHODS];
char *pubkey_accepted_types;
char *ProxyCommand;
char *custombanner;