2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 05:57:52 +00:00

Support new arg to isc_symtab_create

This commit is contained in:
James Brister 1999-06-08 13:15:25 +00:00
parent 9988fd2ff0
commit c11f8f20d9

View File

@ -31,7 +31,11 @@ isc_mem_t *mctx;
isc_symtab_t *st;
static void
undefine_action(char *key, unsigned int type, isc_symvalue_t value) {
undefine_action(char *key, unsigned int type, isc_symvalue_t value,
void *arg)
{
(void) arg;
INSIST(type == 1);
isc_mem_free(mctx, key);
isc_mem_free(mctx, value.as_pointer);
@ -66,7 +70,7 @@ main(int argc, char *argv[]) {
}
RUNTIME_CHECK(isc_mem_create(0, 0, &mctx) == ISC_R_SUCCESS);
RUNTIME_CHECK(isc_symtab_create(mctx, 691, undefine_action,
RUNTIME_CHECK(isc_symtab_create(mctx, 691, undefine_action, NULL,
case_sensitive, &st) == ISC_R_SUCCESS);
while (fgets(s, sizeof s, stdin) != NULL) {
@ -110,7 +114,8 @@ main(int argc, char *argv[]) {
key, cp,
isc_result_totext(result));
if (result != ISC_R_SUCCESS)
undefine_action(key, 1, value);
undefine_action(key, 1,
value, NULL);
}
}
}