Remove unused obsolete isc_hash_* function, and just keep the FNV-1a version

This commit is contained in:
Ondřej Surý
2018-03-27 16:23:13 +02:00
parent d81e1caa71
commit b097be17ef
34 changed files with 7 additions and 751 deletions

View File

@@ -306,9 +306,6 @@ main(int argc, char **argv) {
result = isc_entropy_create(mctx, &ectx);
check_result(result, "isc_entropy_create()");
result = isc_hash_create(mctx, ectx, DNS_NAME_MAXWIRE);
check_result(result, "isc_hash_create()");
result = isc_log_create(mctx, &lctx, &lcfg);
check_result(result, "isc_log_create()");
isc_log_setcontext(lctx);
@@ -418,7 +415,6 @@ main(int argc, char **argv) {
isc_log_destroy(&lctx);
isc_hash_destroy();
isc_entropy_detach(&ectx);
isc_mempool_destroy(&cmp);