Commit fc979b93 authored by John Gardiner Myers's avatar John Gardiner Myers Committed by Rich Salz
Browse files

RT2942: CRYPTO_set_dynlock_create_callback doc fix



The file param is "const char*" not "char*"

Reviewed-by: default avatarDr. Stephen Henson <steve@openssl.org>
parent 448155e9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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));