Enhance consistency by using BIO_flush() instead of fflush().

This commit is contained in:
Richard Levitte
2000-02-25 20:40:12 +00:00
parent 3e0f27f3c9
commit f36e02b2ef
2 changed files with 18 additions and 18 deletions

View File

@@ -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