summaryrefslogtreecommitdiffstats
path: root/ssl/ssl_lib.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2007-09-07 13:03:25 +0000
committerDr. Stephen Henson <steve@openssl.org>2007-09-07 13:03:25 +0000
commit8164032a2e34ac236775cfcf6301d7c74534bbe4 (patch)
treebde539d596a8ab27617169a9b3cd9f30dcba201d /ssl/ssl_lib.c
parenta5804a750b3901196d4440e1b809a1236beef317 (diff)
Fix warnings: computed value not use, incompatible pointer initialization
and cast from pointer to int of different size (linux-x86_64 and align).
Diffstat (limited to 'ssl/ssl_lib.c')
-rw-r--r--ssl/ssl_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c
index 01c29db0f1..575cf7c69a 100644
--- a/ssl/ssl_lib.c
+++ b/ssl/ssl_lib.c
@@ -167,7 +167,7 @@ SSL3_ENC_METHOD ssl3_undef_enc_method={
(int (*)(SSL*, int))ssl_undefined_function,
(int (*)(SSL *, const char*, int, unsigned char *))ssl_undefined_function,
0, /* finish_mac_length */
- (int (*)(SSL *, const EVP_MD *, unsigned char *))ssl_undefined_function,
+ (int (*)(SSL *, int, unsigned char *))ssl_undefined_function,
NULL, /* client_finished_label */
0, /* client_finished_label_len */
NULL, /* server_finished_label */