From: Ulf Möller Date: Thu, 24 Feb 2000 04:41:03 +0000 (+0000) Subject: Fix NO_RSA (misplaced #endif). X-Git-Tag: OpenSSL_0_9_5beta2~95 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=4c5fac4ac4352f4487f2b8cd4660b40bdd0b8f86 Fix NO_RSA (misplaced #endif). --- diff --git a/ssl/s23_srvr.c b/ssl/s23_srvr.c index 5b38f9e285..6a3bbb10b9 100644 --- a/ssl/s23_srvr.c +++ b/ssl/s23_srvr.c @@ -206,8 +206,11 @@ int ssl23_get_client_hello(SSL *s) unsigned int i; unsigned int csl,sil,cl; int n=0,j; - int type=0,use_sslv2_strong=0; + int type=0; int v[2]; +#ifndef NO_RSA + int use_sslv2_strong=0; +#endif if (s->state == SSL23_ST_SR_CLNT_HELLO_A) { diff --git a/ssl/s3_srvr.c b/ssl/s3_srvr.c index 2a9e115e9c..7c6993643f 100644 --- a/ssl/s3_srvr.c +++ b/ssl/s3_srvr.c @@ -1326,7 +1326,6 @@ static int ssl3_get_client_key_exchange(SSL *s) SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_BAD_PROTOCOL_VERSION_NUMBER); goto f_err; } -#endif s->session->master_key_length= s->method->ssl3_enc->generate_master_secret(s, @@ -1335,6 +1334,7 @@ static int ssl3_get_client_key_exchange(SSL *s) memset(p,0,i); } else +#endif #ifndef NO_DH if (l & (SSL_kEDH|SSL_kDHr|SSL_kDHd)) { diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c index 5af71b5545..3e52a8bce1 100644 --- a/ssl/ssl_lib.c +++ b/ssl/ssl_lib.c @@ -81,11 +81,13 @@ OPENSSL_GLOBAL SSL3_ENC_METHOD ssl3_undef_enc_method={ (int (*)(SSL *, EVP_MD_CTX *, EVP_MD_CTX *, const char*, int, unsigned char *))ssl_undefined_function }; +#ifndef NO_RSA union rsa_fn_to_char_u { char *char_p; RSA *(*fn_p)(SSL *, int, int); }; +#endif union dh_fn_to_char_u { diff --git a/util/selftest.pl b/util/selftest.pl index ad0a6ab2d3..beb36b1a9e 100644 --- a/util/selftest.pl +++ b/util/selftest.pl @@ -25,6 +25,7 @@ open(OUT,">$report") or die; print OUT "OpenSSL self-test report:\n\n"; $uname=`uname -a`; +$uname="??" if $uname eq ""; $c=`sh config -t`; foreach $_ (split("\n",$c)) { @@ -48,6 +49,7 @@ if (open(IN,"&1`; $cversion=`$cc -V 2>&1` if $cversion =~ "usage"; +$cversion=`$cc --version` if $cversion eq ""; $cversion =~ s/Reading specs.*\n//; $cversion =~ s/usage.*\n//; chomp $cversion; @@ -64,6 +66,7 @@ if (open(IN,"&1 | tee make.log") > 255) { goto err; } +$_=$options; +s/no-asm//; +if (/no-/) +{ + print OUT "Test skipped.\n"; + goto err; +} + print "Running make test...\n"; if (system("make test 2>&1 | tee make.log") > 255) { @@ -153,8 +164,11 @@ close(OUT); print "\n"; open(IN,"<$report") or die; while () { - last if /$sep/; + if (/$sep/) { + print "[...]\n"; + last; + } print; } -print "Test report in file $report\n"; +print "\nTest report in file $report\n";