authd/provider: really fix things for new changes.

This commit is contained in:
Elizabeth Myers 2016-03-23 09:15:18 -05:00
parent fa1b3a733a
commit a52c7a8e69
2 changed files with 2 additions and 2 deletions

View file

@ -86,7 +86,7 @@ void destroy_providers(void)
struct auth_provider *provider; struct auth_provider *provider;
/* Cancel outstanding connections */ /* Cancel outstanding connections */
DICTIONARY_FOREACH(auth, &iter, auth_clients) RB_DICTIONARY_FOREACH(auth, &iter, auth_clients)
{ {
/* TBD - is this the right thing? */ /* TBD - is this the right thing? */
reject_client(auth, 0, "Authentication system is down... try reconnecting in a few seconds"); reject_client(auth, 0, "Authentication system is down... try reconnecting in a few seconds");

View file

@ -74,7 +74,7 @@ struct auth_provider
}; };
extern rb_dlink_list auth_providers; 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 rdns_provider;
extern struct auth_provider ident_provider; extern struct auth_provider ident_provider;