"DESCRIPTION" is required.
[openssl.git] / doc / ssl / SSL_SESSION_free.pod
index 2ec7544cac1638673ebcefe3bb649f946f1bc4a9..df30ccbb320f9a916392dc15e303fd536ade363c 100644 (file)
@@ -2,18 +2,18 @@
 
 =head1 NAME
 
-SSL_SESSION_free - Free up an allocated SSL_SESSION structure
+SSL_SESSION_free - free an allocated SSL_SESSION structure
 
 =head1 SYNOPSIS
 
  #include <openssl/ssl.h>
 
- void *SSL_SESSION_free(SSL_SESSION *session);
+ void SSL_SESSION_free(SSL_SESSION *session);
 
 =head1 DESCRIPTION
 
 SSL_SESSION_free() decrements the reference count of B<session> and removes
-the SSL_SESSION structure pointed to by B<session> and frees up the allocated
+the B<SSL_SESSION> structure pointed to by B<session> and frees up the allocated
 memory, if the the reference count has reached 0.
 
 =head1 RETURN VALUES