0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-29 04:08:54 +02:00

provider: use rb_dlinkAddTail instead of rb_dlinkAdd.

Providers we add last should come last, not first.
This commit is contained in:
Elizabeth Myers 2016-04-03 00:06:58 -05:00
parent 85589ba32f
commit 53c0462146

View file

@ -86,7 +86,7 @@ load_provider(struct auth_provider *provider)
if(provider->init != NULL)
provider->init();
rb_dlinkAdd(provider, &provider->node, &auth_providers);
rb_dlinkAddTail(provider, &provider->node, &auth_providers);
}
void