From: Darren Tucker Date: Tue, 7 Mar 2023 07:34:41 +0000 (+1100) Subject: Add header changes missed in previous. X-Git-Tag: V_9_3_P1~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=42a06b29a4c99272bf690f9b3be520b08b448dc5;p=thirdparty%2Fopenssh-portable.git Add header changes missed in previous. --- diff --git a/regress/unittests/kex/test_proposal.c b/regress/unittests/kex/test_proposal.c index a5f92b542..fa4192bb6 100644 --- a/regress/unittests/kex/test_proposal.c +++ b/regress/unittests/kex/test_proposal.c @@ -18,21 +18,24 @@ #include "../test_helper/test_helper.h" +#include "cipher.h" #include "compat.h" #include "ssherr.h" #include "sshbuf.h" #include "kex.h" +#include "myproposal.h" #include "packet.h" #include "xmalloc.h" -void kex_proposal(void); +void kex_proposal_tests(void); +void kex_proposal_populate_tests(void); #define CURVE25519 "curve25519-sha256@libssh.org" #define DHGEX1 "diffie-hellman-group-exchange-sha1" #define DHGEX256 "diffie-hellman-group-exchange-sha256" #define KEXALGOS CURVE25519","DHGEX256","DHGEX1 void -kex_proposal(void) +kex_proposal_tests(void) { size_t i; struct ssh ssh;