From: Richard Levitte Date: Tue, 20 Feb 2001 14:00:29 +0000 (+0000) Subject: Get the right cast for lhash callback functions. X-Git-Tag: OpenSSL_0_9_6a-beta1~23^2~45 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b8feddae715c64d2a33a79ac90d962a6a927e7dd;p=oweals%2Fopenssl.git Get the right cast for lhash callback functions. --- diff --git a/crypto/objects/o_names.c b/crypto/objects/o_names.c index 03d65397b8..f381b395d0 100644 --- a/crypto/objects/o_names.c +++ b/crypto/objects/o_names.c @@ -67,8 +67,8 @@ int OBJ_NAME_new_index(unsigned long (*hash_func)(const char *), { MemCheck_off(); name_funcs = OPENSSL_malloc(sizeof(NAME_FUNCS)); - name_funcs->hash_func = lh_strhash; - name_funcs->cmp_func = strcmp; + name_funcs->hash_func = (LHASH_HASH_FN_TYPE)lh_strhash; + name_funcs->cmp_func = (LHASH_COMP_FN_TYPE)strcmp; name_funcs->free_func = 0; /* NULL is often declared to * ((void *)0), which according * to Compaq C is not really