From a52c7a8e693a11cbfd02c94e2ea0676b04d09343 Mon Sep 17 00:00:00 2001 From: Elizabeth Myers Date: Wed, 23 Mar 2016 09:15:18 -0500 Subject: [PATCH] authd/provider: really fix things for new changes. --- authd/provider.c | 2 +- authd/provider.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/authd/provider.c b/authd/provider.c index 8888d28a..31ef7816 100644 --- a/authd/provider.c +++ b/authd/provider.c @@ -86,7 +86,7 @@ void destroy_providers(void) struct auth_provider *provider; /* Cancel outstanding connections */ - DICTIONARY_FOREACH(auth, &iter, auth_clients) + RB_DICTIONARY_FOREACH(auth, &iter, auth_clients) { /* TBD - is this the right thing? */ reject_client(auth, 0, "Authentication system is down... try reconnecting in a few seconds"); diff --git a/authd/provider.h b/authd/provider.h index f9cb12f7..a3326cc5 100644 --- a/authd/provider.h +++ b/authd/provider.h @@ -74,7 +74,7 @@ struct auth_provider }; extern rb_dlink_list auth_providers; -extern struct Dictionary *auth_clients; +extern rb_dictionary *auth_clients; extern struct auth_provider rdns_provider; extern struct auth_provider ident_provider;