diff options
author | beck <> | 2014-04-13 19:50:56 +0000 |
---|---|---|
committer | beck <> | 2014-04-13 19:50:56 +0000 |
commit | b8d0226baeb7d192c015a0db36bb7d77f17b744c (patch) | |
tree | 408fd582bdaae20967d5a427b44a92580d19a1e2 /src/lib/libcrypto/cryptlib.c | |
parent | da46bab8c0298f3edf0a0d6efc66fc7838b161e5 (diff) | |
download | openbsd-b8d0226baeb7d192c015a0db36bb7d77f17b744c.tar.gz openbsd-b8d0226baeb7d192c015a0db36bb7d77f17b744c.tar.bz2 openbsd-b8d0226baeb7d192c015a0db36bb7d77f17b744c.zip |
Remove some stuff that isn't needed.
ok miod@ deraadt@
Diffstat (limited to 'src/lib/libcrypto/cryptlib.c')
-rw-r--r-- | src/lib/libcrypto/cryptlib.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/libcrypto/cryptlib.c b/src/lib/libcrypto/cryptlib.c index 0b77d8b7d0..082b2e88ee 100644 --- a/src/lib/libcrypto/cryptlib.c +++ b/src/lib/libcrypto/cryptlib.c | |||
@@ -182,19 +182,19 @@ static STACK_OF(OPENSSL_STRING) *app_locks=NULL; | |||
182 | static STACK_OF(CRYPTO_dynlock) *dyn_locks=NULL; | 182 | static STACK_OF(CRYPTO_dynlock) *dyn_locks=NULL; |
183 | 183 | ||
184 | 184 | ||
185 | static void (MS_FAR *locking_callback)(int mode,int type, | 185 | static void (*locking_callback)(int mode,int type, |
186 | const char *file,int line)=0; | 186 | const char *file,int line)=0; |
187 | static int (MS_FAR *add_lock_callback)(int *pointer,int amount, | 187 | static int (*add_lock_callback)(int *pointer,int amount, |
188 | int type,const char *file,int line)=0; | 188 | int type,const char *file,int line)=0; |
189 | #ifndef OPENSSL_NO_DEPRECATED | 189 | #ifndef OPENSSL_NO_DEPRECATED |
190 | static unsigned long (MS_FAR *id_callback)(void)=0; | 190 | static unsigned long (*id_callback)(void)=0; |
191 | #endif | 191 | #endif |
192 | static void (MS_FAR *threadid_callback)(CRYPTO_THREADID *)=0; | 192 | static void (*threadid_callback)(CRYPTO_THREADID *)=0; |
193 | static struct CRYPTO_dynlock_value *(MS_FAR *dynlock_create_callback) | 193 | static struct CRYPTO_dynlock_value *(*dynlock_create_callback) |
194 | (const char *file,int line)=0; | 194 | (const char *file,int line)=0; |
195 | static void (MS_FAR *dynlock_lock_callback)(int mode, | 195 | static void (*dynlock_lock_callback)(int mode, |
196 | struct CRYPTO_dynlock_value *l, const char *file,int line)=0; | 196 | struct CRYPTO_dynlock_value *l, const char *file,int line)=0; |
197 | static void (MS_FAR *dynlock_destroy_callback)(struct CRYPTO_dynlock_value *l, | 197 | static void (*dynlock_destroy_callback)(struct CRYPTO_dynlock_value *l, |
198 | const char *file,int line)=0; | 198 | const char *file,int line)=0; |
199 | 199 | ||
200 | int CRYPTO_get_new_lockid(char *name) | 200 | int CRYPTO_get_new_lockid(char *name) |