From: Bodo Möller Date: Sat, 1 May 1999 00:18:54 +0000 (+0000) Subject: Add "static" to function definition X-Git-Tag: OpenSSL_0_9_3beta1~179 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0fda2e3788c576392f3521dfa4b9c86e93e977b7;p=openssl Add "static" to function definition Submitted by: Anonymous Reviewed by: PR: Submitted by: Reviewed by: PR: --- diff --git a/ssl/ssl_sess.c b/ssl/ssl_sess.c index a172107bd2..099abb262d 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;