man page for SSL_CTX_set_info_callback gives incorrect signature
Bug #1147526 reported by
Jean-Paul Calderone
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
openssl (Ubuntu) |
Confirmed
|
Undecided
|
Unassigned |
Bug Description
The man page give these signatures:
void SSL_CTX_
void (*SSL_CTX_
void SSL_set_
void (*SSL_get_
but the correct signatures are actually:
void SSL_CTX_
void (*SSL_CTX_
void SSL_set_
void (*SSL_get_
To post a comment you must log in.
Copying this from 1297025 (from the same reporter):
The man page for SSL_CTX_ set_session_ cache_mode gives its signature as:
long SSL_CTX_ set_session_ cache_mode( SSL_CTX ctx, long mode);
The correct signature is:
long SSL_CTX_ set_session_ cache_mode( SSL_CTX *ctx, long mode);
The same goes for SSL_CTX_ get_session_ cache_mode, documented in the same manual page.
Same bug in the SSL_CTX_ add_extra_ chain_cert manual page.