]> jfr.im git - solanum.git/commitdiff
authd/provider: really fix things for new changes.
authorElizabeth Myers <redacted>
Wed, 23 Mar 2016 14:15:18 +0000 (09:15 -0500)
committerElizabeth Myers <redacted>
Wed, 23 Mar 2016 14:15:18 +0000 (09:15 -0500)
authd/provider.c
authd/provider.h

index 8888d28a90215c92c4dcb088a3f4fa61a20bd98d..31ef781640981e7d91798ed4ba6557dcf9a299ef 100644 (file)
@@ -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");
index f9cb12f713b7421df04df643e7d58680f1158b33..a3326cc50b5eb3330953d2385c2b1c367832f96f 100644 (file)
@@ -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;