From 396f631458c34469bf12a575f0fccc44282e0d1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bodo=20M=C3=B6ller?= Date: Wed, 8 Sep 1999 21:58:13 +0000 Subject: some more patches for avoiding problems with non-automatic variables --- ssl/ssltest.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ssl') diff --git a/ssl/ssltest.c b/ssl/ssltest.c index b62f5ad4f7..ec57c71026 100644 --- a/ssl/ssltest.c +++ b/ssl/ssltest.c @@ -85,15 +85,15 @@ # define TEST_CLIENT_CERT "../apps/client.pem" #endif -int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx); +static int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx); #ifndef NO_RSA static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int is_export,int keylength); #endif #ifndef NO_DH static DH *get_dh512(void); #endif -BIO *bio_err=NULL; -BIO *bio_stdout=NULL; +static BIO *bio_err=NULL; +static BIO *bio_stdout=NULL; static char *cipher=NULL; int verbose=0; @@ -1104,7 +1104,7 @@ err: return(ret); } -int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx) +static int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx) { char *s,buf[256]; -- cgit v1.2.3