Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-08-14 18:46:03 +0400
committerRichard Levitte <levitte@openssl.org>2002-08-14 18:46:03 +0400
commitc3bfe3f4cbd1307fc9d4002215b544ade67a0c6e (patch)
tree523084f89916941226ebb8df7a470a4babf1d4b3 /ssl
parentd84a727178e08f06684556e2b923caa0bf203986 (diff)
Recent changes from 0.9.6-stable.
Diffstat (limited to 'ssl')
-rw-r--r--ssl/ssl-lib.com2
-rw-r--r--ssl/ssltest.c12
2 files changed, 12 insertions, 2 deletions
diff --git a/ssl/ssl-lib.com b/ssl/ssl-lib.com
index 54390dedb9..7d2836478d 100644
--- a/ssl/ssl-lib.com
+++ b/ssl/ssl-lib.com
@@ -313,7 +313,7 @@ $ WRITE SYS$OUTPUT "Creating SSL_TASK OSU HTTP SSL Engine."
$!
$! Compile The File.
$!
-$ ON ERROR GOTO SSL_TASK_END
+$ ON ERROR THEN GOTO SSL_TASK_END
$ CC5/OBJECT='OBJ_DIR'SSL_TASK.OBJ SYS$DISK:[]SSL_TASK.C
$!
$! Link The Program, Check To See If We Need To Link With RSAREF Or Not.
diff --git a/ssl/ssltest.c b/ssl/ssltest.c
index 5f91ed19c7..c752d0b01b 100644
--- a/ssl/ssltest.c
+++ b/ssl/ssltest.c
@@ -247,12 +247,22 @@ int main(int argc, char *argv[])
debug=1;
else if (strcmp(*argv,"-reuse") == 0)
reuse=1;
-#ifndef NO_DH
else if (strcmp(*argv,"-dhe1024") == 0)
+ {
+#ifndef NO_DH
dhe1024=1;
+#else
+ fprintf(stderr,"ignoring -dhe1024, since I'm compiled without DH\n";
+#endif
+ }
else if (strcmp(*argv,"-dhe1024dsa") == 0)
+ {
+#ifndef NO_DH
dhe1024dsa=1;
+#else
+ fprintf(stderr,"ignoring -dhe1024, since I'm compiled without DH\n";
#endif
+ }
else if (strcmp(*argv,"-no_dhe") == 0)
no_dhe=1;
else if (strcmp(*argv,"-ssl2") == 0)