From c2222d7e9a7071350f15c125e7906b36e3240260 Mon Sep 17 00:00:00 2001 From: Elizabeth Myers Date: Thu, 10 Mar 2016 10:04:35 -0600 Subject: [PATCH] authd: actually init providers on startup. (Yay, it doesn't crash!) --- authd/authd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/authd/authd.c b/authd/authd.c index 503330040..bb01be828 100644 --- a/authd/authd.c +++ b/authd/authd.c @@ -153,6 +153,7 @@ main(int argc, char *argv[]) rb_set_time(); setup_signals(); init_resolver(); + init_providers(); rb_init_prng(NULL, RB_PRNG_DEFAULT); rb_helper_loop(authd_helper, 0);