No such reference to link to (found running pod2latex).
[openssl.git] / doc / ssl / SSL_CTX_set_info_callback.pod
index 15dab2f1b1186b2994d009c585078dd7656dc0dc..63d0b8d33f87568fab08051d842476ff88389b03 100644 (file)
@@ -14,8 +14,6 @@ SSL_CTX_set_info_callback, SSL_CTX_get_info_callback, SSL_set_info_callback, SSL
  void SSL_set_info_callback(SSL *ssl, void (*callback)());
  void (*SSL_get_info_callback(SSL *ssl))();
 
- int (*callback)();
-
 =head1 DESCRIPTION
 
 SSL_CTX_set_info_callback() sets the B<callback> function, that can be used to
@@ -43,7 +41,7 @@ is called whenever the state changes, an alert appears, or an error occurs.
 
 The callback function is called as B<callback(SSL *ssl, int where, int ret)>.
 The B<where> argument specifies information about where (in which context)
-the callback function was called. If B<ret> is 0, an error condition occured.
+the callback function was called. If B<ret> is 0, an error condition occurred.
 If an alert is handled, SSL_CB_ALERT is set and B<ret> specifies the alert
 information.