From aba29d5a19d0b3aa8448e35c8b20472c383ef11c Mon Sep 17 00:00:00 2001 From: Elizabeth Myers Date: Wed, 23 Mar 2016 09:03:37 -0500 Subject: [PATCH] authd/provider: incorporate new changes --- authd/provider.c | 4 ++-- authd/providers/ident.c | 4 ++-- authd/providers/rdns.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/authd/provider.c b/authd/provider.c index ecbb45c5c..8888d28a9 100644 --- a/authd/provider.c +++ b/authd/provider.c @@ -50,7 +50,7 @@ rb_dlink_list auth_providers; /* Clients waiting */ -struct Dictionary *auth_clients; +rb_dictionary *auth_clients; /* Load a provider */ void load_provider(struct auth_provider *provider) @@ -81,7 +81,7 @@ void init_providers(void) void destroy_providers(void) { rb_dlink_node *ptr; - struct DictionaryIter iter; + rb_dictionary_iter iter; struct auth_client *auth; struct auth_provider *provider; diff --git a/authd/providers/ident.c b/authd/providers/ident.c index 5a9376cc3..22ede8c9f 100644 --- a/authd/providers/ident.c +++ b/authd/providers/ident.c @@ -68,7 +68,7 @@ bool ident_init(void) void ident_destroy(void) { struct auth_client *auth; - struct DictionaryIter iter; + rb_dictionary_iter iter; /* Nuke all ident queries */ DICTIONARY_FOREACH(auth, &iter, auth_clients) @@ -142,7 +142,7 @@ void ident_cancel(struct auth_client *auth) static void timeout_ident_queries_event(void *notused) { struct auth_client *auth; - struct DictionaryIter iter; + rb_dictionary_iter iter; DICTIONARY_FOREACH(auth, &iter, auth_clients) { diff --git a/authd/providers/rdns.c b/authd/providers/rdns.c index 163be7961..6d0d7dfef 100644 --- a/authd/providers/rdns.c +++ b/authd/providers/rdns.c @@ -68,7 +68,7 @@ bool client_dns_init(void) void client_dns_destroy(void) { struct auth_client *auth; - struct DictionaryIter iter; + rb_dictionary_iter iter; DICTIONARY_FOREACH(auth, &iter, auth_clients) { @@ -123,7 +123,7 @@ get_dns_answer(const char *res, bool status, query_type type, void *data) static void timeout_dns_queries_event(void *notused) { struct auth_client *auth; - struct DictionaryIter iter; + rb_dictionary_iter iter; DICTIONARY_FOREACH(auth, &iter, auth_clients) {