From ab33d608de2257a8984e86f3813d734becdb3d88 Mon Sep 17 00:00:00 2001 From: Elizabeth Myers Date: Wed, 23 Mar 2016 14:29:27 -0500 Subject: [PATCH] DICTIONARY_FOREACH -> RB_DICTIONARY_FOREACH [ci skip] --- authd/providers/ident.c | 4 ++-- authd/providers/rdns.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/authd/providers/ident.c b/authd/providers/ident.c index 22ede8c9f..0ba927c8c 100644 --- a/authd/providers/ident.c +++ b/authd/providers/ident.c @@ -71,7 +71,7 @@ void ident_destroy(void) rb_dictionary_iter iter; /* Nuke all ident queries */ - DICTIONARY_FOREACH(auth, &iter, auth_clients) + RB_DICTIONARY_FOREACH(auth, &iter, auth_clients) { if(auth->data[PROVIDER_IDENT] != NULL) client_fail(auth, REPORT_FAIL); @@ -144,7 +144,7 @@ static void timeout_ident_queries_event(void *notused) struct auth_client *auth; rb_dictionary_iter iter; - DICTIONARY_FOREACH(auth, &iter, auth_clients) + RB_DICTIONARY_FOREACH(auth, &iter, auth_clients) { struct ident_query *query = auth->data[PROVIDER_IDENT]; diff --git a/authd/providers/rdns.c b/authd/providers/rdns.c index 6d0d7dfef..d1dfbdc67 100644 --- a/authd/providers/rdns.c +++ b/authd/providers/rdns.c @@ -70,7 +70,7 @@ void client_dns_destroy(void) struct auth_client *auth; rb_dictionary_iter iter; - DICTIONARY_FOREACH(auth, &iter, auth_clients) + RB_DICTIONARY_FOREACH(auth, &iter, auth_clients) { if(auth->data[PROVIDER_RDNS] != NULL) client_fail(auth, REPORT_FAIL); @@ -125,7 +125,7 @@ static void timeout_dns_queries_event(void *notused) struct auth_client *auth; rb_dictionary_iter iter; - DICTIONARY_FOREACH(auth, &iter, auth_clients) + RB_DICTIONARY_FOREACH(auth, &iter, auth_clients) { struct user_query *query = auth->data[PROVIDER_RDNS];