=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/sshd.c,v retrieving revision 1.513 retrieving revision 1.514 diff -u -r1.513 -r1.514 --- src/usr.bin/ssh/sshd.c 2018/07/31 03:07:24 1.513 +++ src/usr.bin/ssh/sshd.c 2018/08/13 02:41:05 1.514 @@ -1,4 +1,4 @@ -/* $OpenBSD: sshd.c,v 1.513 2018/07/31 03:07:24 djm Exp $ */ +/* $OpenBSD: sshd.c,v 1.514 2018/08/13 02:41:05 djm Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -2082,11 +2082,11 @@ int r; myproposal[PROPOSAL_KEX_ALGS] = compat_kex_proposal( - options.kex_algorithms, datafellows); + options.kex_algorithms); myproposal[PROPOSAL_ENC_ALGS_CTOS] = compat_cipher_proposal( - options.ciphers, datafellows); + options.ciphers); myproposal[PROPOSAL_ENC_ALGS_STOC] = compat_cipher_proposal( - options.ciphers, datafellows); + options.ciphers); myproposal[PROPOSAL_MAC_ALGS_CTOS] = myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs; @@ -2100,7 +2100,7 @@ options.rekey_interval); myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = compat_pkalg_proposal( - list_hostkey_types(), datafellows); + list_hostkey_types()); /* start key exchange */ if ((r = kex_setup(active_state, myproposal)) != 0)