diff options
author | Richard Levitte <levitte@openssl.org> | 2000-02-25 20:40:12 +0000 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2000-02-25 20:40:12 +0000 |
commit | f36e02b2efb1e0dbded5420fcf45560e93bb1f27 (patch) | |
tree | 414b4c5cab09ca9964ab419895ea269ab66c591b /crypto/objects/o_names.c | |
parent | 3e0f27f3c9419a83e82bda973f8e9ba7296480d6 (diff) | |
download | openssl-new-f36e02b2efb1e0dbded5420fcf45560e93bb1f27.tar.gz |
Enhance consistency by using BIO_flush() instead of fflush().
Diffstat (limited to 'crypto/objects/o_names.c')
-rw-r--r-- | crypto/objects/o_names.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/objects/o_names.c b/crypto/objects/o_names.c index 08a7323acb..d654eb220e 100644 --- a/crypto/objects/o_names.c +++ b/crypto/objects/o_names.c @@ -61,7 +61,7 @@ int OBJ_NAME_new_index(unsigned long (*hash_func)(), int (*cmp_func)(), MemCheck_off(); name_funcs = Malloc(sizeof(NAME_FUNCS)); name_funcs->hash_func = lh_strhash; - name_funcs->cmp_func = strcmp; + name_funcs->cmp_func = (int (*)())strcmp; name_funcs->free_func = 0; /* NULL is often declared to * ((void *)0), which according * to Compaq C is not really |