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;