mirror of
https://github.com/matrix-construct/construct
synced 2024-12-30 17:34:04 +01:00
authd/provider: really fix things for new changes.
This commit is contained in:
parent
fa1b3a733a
commit
a52c7a8e69
2 changed files with 2 additions and 2 deletions
|
@ -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");
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue