aboutsummaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-05-01 00:18:54 +0000
committerBodo Möller <bodo@openssl.org>1999-05-01 00:18:54 +0000
commit0fda2e3788c576392f3521dfa4b9c86e93e977b7 (patch)
tree62a9c8f1135ebb549aec842abfbe50d752b58d6a /ssl
parentc9e4bc2f07bd751a51ed9b7115aea18b898b80c2 (diff)
downloadopenssl-0fda2e3788c576392f3521dfa4b9c86e93e977b7.zip
openssl-0fda2e3788c576392f3521dfa4b9c86e93e977b7.tar.gz
openssl-0fda2e3788c576392f3521dfa4b9c86e93e977b7.tar.bz2
Add "static" to function definition
Submitted by: Anonymous Reviewed by: PR: Submitted by: Reviewed by: PR:
Diffstat (limited to 'ssl')
-rw-r--r--ssl/ssl_sess.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/ssl_sess.c b/ssl/ssl_sess.c
index a172107..099abb2 100644
--- a/ssl/ssl_sess.c
+++ b/ssl/ssl_sess.c
@@ -322,7 +322,7 @@ int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *c)
return remove_session_lock(ctx, c, 1);
}
-int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *c, int lck)
+static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *c, int lck)
{
SSL_SESSION *r;
int ret=0;