summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2000-02-04 14:01:38 +0000
committerDr. Stephen Henson <steve@openssl.org>2000-02-04 14:01:38 +0000
commitaf57d843124672a9053a4da60ad7f9b6d4324a5a (patch)
treebe04d473220a67bbe9f5075a13f3cf299b8ade7a /apps
parent53002dc69147ed67513623acb6ad390b69dac4c7 (diff)
Rename SSLeay_add_all_algorithms() et al to
OpenSSL_add_all_algorithms(). Move these into separate files so they work properly.
Diffstat (limited to 'apps')
-rw-r--r--apps/ciphers.c2
-rw-r--r--apps/pkcs8.c2
-rw-r--r--apps/s_client.c2
-rw-r--r--apps/s_server.c2
-rw-r--r--apps/s_time.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/apps/ciphers.c b/apps/ciphers.c
index f473f4c3dc..4baa0c3c8e 100644
--- a/apps/ciphers.c
+++ b/apps/ciphers.c
@@ -141,7 +141,7 @@ int MAIN(int argc, char **argv)
goto end;
}
- SSLeay_add_ssl_algorithms();
+ OpenSSL_add_ssl_algorithms();
ctx=SSL_CTX_new(meth);
if (ctx == NULL) goto err;
diff --git a/apps/pkcs8.c b/apps/pkcs8.c
index a958333517..ccd7b44d1c 100644
--- a/apps/pkcs8.c
+++ b/apps/pkcs8.c
@@ -87,7 +87,7 @@ int MAIN(int argc, char **argv)
informat=FORMAT_PEM;
outformat=FORMAT_PEM;
ERR_load_crypto_strings();
- SSLeay_add_all_algorithms();
+ OpenSSL_add_all_algorithms();
args = argv + 1;
while (!badarg && *args && *args[0] == '-') {
if (!strcmp(*args,"-v2")) {
diff --git a/apps/s_client.c b/apps/s_client.c
index b70777ea3a..fc3e398cb4 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -337,7 +337,7 @@ bad:
}
}
- SSLeay_add_ssl_algorithms();
+ OpenSSL_add_ssl_algorithms();
SSL_load_error_strings();
ctx=SSL_CTX_new(meth);
if (ctx == NULL)
diff --git a/apps/s_server.c b/apps/s_server.c
index f723e559fd..044d4c448d 100644
--- a/apps/s_server.c
+++ b/apps/s_server.c
@@ -605,7 +605,7 @@ bad:
}
SSL_load_error_strings();
- SSLeay_add_ssl_algorithms();
+ OpenSSL_add_ssl_algorithms();
ctx=SSL_CTX_new(meth);
if (ctx == NULL)
diff --git a/apps/s_time.c b/apps/s_time.c
index 5c3c251631..4f42681feb 100644
--- a/apps/s_time.c
+++ b/apps/s_time.c
@@ -416,7 +416,7 @@ int MAIN(int argc, char **argv)
if( parseArgs( argc, argv ) < 0 )
goto end;
- SSLeay_add_ssl_algorithms();
+ OpenSSL_add_ssl_algorithms();
if ((tm_ctx=SSL_CTX_new(s_time_meth)) == NULL) return(1);
SSL_CTX_set_quiet_shutdown(tm_ctx,1);