ssl/statem/extensions_clnt.c: fix return code buglet.

Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4297)
This commit is contained in:
Andy Polyakov 2017-08-31 23:24:30 +02:00
parent eb5fd03bb2
commit 89bc9cf682

View file

@ -1052,7 +1052,7 @@ EXT_RETURN tls_construct_ctos_psk(SSL *s, WPACKET *pkt, unsigned int context,
err:
return ret;
#else
return EXT_RETURN_SENT;
return EXT_RETURN_NOT_SENT;
#endif
}