From: John Gardiner Myers Date: Mon, 18 Aug 2014 18:53:29 +0000 (-0400) Subject: RT2942: CRYPTO_set_dynlock_create_callback doc fix X-Git-Tag: master-post-reformat~481 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=fc979b93eeb992e02bc79b17e9ff80b497861a45;p=oweals%2Fopenssl.git RT2942: CRYPTO_set_dynlock_create_callback doc fix The file param is "const char*" not "char*" Reviewed-by: Dr. Stephen Henson --- diff --git a/doc/crypto/threads.pod b/doc/crypto/threads.pod index dc0e9391dc..37be84fc39 100644 --- a/doc/crypto/threads.pod +++ b/doc/crypto/threads.pod @@ -37,7 +37,7 @@ CRYPTO_destroy_dynlockid, CRYPTO_lock - OpenSSL thread support struct CRYPTO_dynlock_value; void CRYPTO_set_dynlock_create_callback(struct CRYPTO_dynlock_value * - (*dyn_create_function)(char *file, int line)); + (*dyn_create_function)(const char *file, int line)); void CRYPTO_set_dynlock_lock_callback(void (*dyn_lock_function) (int mode, struct CRYPTO_dynlock_value *l, const char *file, int line));