Skip to content

Commit

Permalink
Fix DTLS/OpenSSL build break
Browse files Browse the repository at this point in the history
Commit 287f535 ("Print the compression algorithm name after DTLS is
connected") broke the OpenSSL build. Reported by Kamil Skowron.

Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
  • Loading branch information
David Woodhouse authored and David Woodhouse committed Oct 7, 2015
1 parent dfb20e4 commit 8984a8c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions dtls.c
Expand Up @@ -333,6 +333,7 @@ static int dtls_try_handshake(struct openconnect_info *vpninfo)
int ret = SSL_do_handshake(vpninfo->dtls_ssl);

if (ret == 1) {
const char *c;
vpninfo->dtls_state = DTLS_CONNECTED;
vpn_progress(vpninfo, PRG_INFO,
_("Established DTLS connection (using OpenSSL). Ciphersuite %s.\n"),
Expand Down

0 comments on commit 8984a8c

Please sign in to comment.