From: Richard Levitte Date: Fri, 22 Jul 2016 19:48:05 +0000 (+0200) Subject: Correct misspelt OPENSSL_NO_SRP X-Git-Tag: OpenSSL_1_1_0-pre6~115 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=8b9546c7085733c88f1df66da48d48a3bc5230a2 Correct misspelt OPENSSL_NO_SRP RT#4619 Reviewed-by: Rich Salz --- diff --git a/ssl/statem/statem_clnt.c b/ssl/statem/statem_clnt.c index b0f508c6c2..5fb00803bf 100644 --- a/ssl/statem/statem_clnt.c +++ b/ssl/statem/statem_clnt.c @@ -2451,7 +2451,7 @@ static int tls_construct_cke_gost(SSL *s, unsigned char **p, int *len, int *al) static int tls_construct_cke_srp(SSL *s, unsigned char **p, int *len, int *al) { -#ifndef OPENSSL_NO_SRT +#ifndef OPENSSL_NO_SRP if (s->srp_ctx.A != NULL) { /* send off the data */ *len = BN_num_bytes(s->srp_ctx.A);