From c6a27f0178b00515ed401494debc2f92d527b9ab Mon Sep 17 00:00:00 2001 From: Nils Larsch Date: Wed, 15 Mar 2006 19:17:56 +0000 Subject: [PATCH] fix for OPENSSL_NO_EC PR: 1293 --- ssl/t1_lib.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c index a46e573ff6..ffb93b7b6b 100644 --- a/ssl/t1_lib.c +++ b/ssl/t1_lib.c @@ -384,9 +384,9 @@ int ssl_parse_clienthello_tlsext(SSL *s, unsigned char **p, unsigned char *d, in fprintf(stderr,"\n"); #endif } +#endif /* OPENSSL_NO_EC */ data+=size; } -#endif /* OPENSSL_NO_EC */ *p = data; return 1; @@ -455,10 +455,9 @@ int ssl_parse_serverhello_tlsext(SSL *s, unsigned char **p, unsigned char *d, in fprintf(stderr,"\n"); #endif } - +#endif /* OPENSSL_NO_EC */ data+=size; } -#endif /* OPENSSL_NO_EC */ if (data != d+n) { -- GitLab