0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-27 04:48:38 +02:00

DICTIONARY_FOREACH -> RB_DICTIONARY_FOREACH [ci skip]

This commit is contained in:
Elizabeth Myers 2016-03-23 14:29:27 -05:00
parent 757bab823c
commit ab33d608de
2 changed files with 4 additions and 4 deletions

View file

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

View file

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