diff options
author | 2014-04-13 19:50:56 +0000 | |
---|---|---|
committer | 2014-04-13 19:50:56 +0000 | |
commit | 8b5c64d98fbd2b0d277041519e470a0723bee4e1 (patch) | |
tree | dd98925b141b39fa5621529bbfc80cf8ed29be29 /lib/libssl/src/crypto/cryptlib.c | |
parent | Remove the AEP engine: it is not standalone and doesn't seem to be (diff) | |
download | wireguard-openbsd-8b5c64d98fbd2b0d277041519e470a0723bee4e1.tar.xz wireguard-openbsd-8b5c64d98fbd2b0d277041519e470a0723bee4e1.zip |
Remove some stuff that isn't needed.
ok miod@ deraadt@
Diffstat (limited to 'lib/libssl/src/crypto/cryptlib.c')
-rw-r--r-- | lib/libssl/src/crypto/cryptlib.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/libssl/src/crypto/cryptlib.c b/lib/libssl/src/crypto/cryptlib.c index 0b77d8b7d0e..082b2e88ee0 100644 --- a/lib/libssl/src/crypto/cryptlib.c +++ b/lib/libssl/src/crypto/cryptlib.c @@ -182,19 +182,19 @@ static STACK_OF(OPENSSL_STRING) *app_locks=NULL; static STACK_OF(CRYPTO_dynlock) *dyn_locks=NULL; -static void (MS_FAR *locking_callback)(int mode,int type, +static void (*locking_callback)(int mode,int type, const char *file,int line)=0; -static int (MS_FAR *add_lock_callback)(int *pointer,int amount, +static int (*add_lock_callback)(int *pointer,int amount, int type,const char *file,int line)=0; #ifndef OPENSSL_NO_DEPRECATED -static unsigned long (MS_FAR *id_callback)(void)=0; +static unsigned long (*id_callback)(void)=0; #endif -static void (MS_FAR *threadid_callback)(CRYPTO_THREADID *)=0; -static struct CRYPTO_dynlock_value *(MS_FAR *dynlock_create_callback) +static void (*threadid_callback)(CRYPTO_THREADID *)=0; +static struct CRYPTO_dynlock_value *(*dynlock_create_callback) (const char *file,int line)=0; -static void (MS_FAR *dynlock_lock_callback)(int mode, +static void (*dynlock_lock_callback)(int mode, struct CRYPTO_dynlock_value *l, const char *file,int line)=0; -static void (MS_FAR *dynlock_destroy_callback)(struct CRYPTO_dynlock_value *l, +static void (*dynlock_destroy_callback)(struct CRYPTO_dynlock_value *l, const char *file,int line)=0; int CRYPTO_get_new_lockid(char *name) |