From 269646ed4c8c74712e52d87027084009d37f5aa3 Mon Sep 17 00:00:00 2001 From: Elizabeth Myers Date: Wed, 6 Apr 2016 07:43:36 -0500 Subject: [PATCH] opm: silly bugfix --- authd/providers/opm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/authd/providers/opm.c b/authd/providers/opm.c index 56150bfc7..7675a8498 100644 --- a/authd/providers/opm.c +++ b/authd/providers/opm.c @@ -635,7 +635,7 @@ opm_scan(struct auth_client *auth) /* This is called every time a provider is completed as long as we are marked not done */ static void -blacklists_initiate(struct auth_client *auth, uint32_t provider) +opm_initiate(struct auth_client *auth, uint32_t provider) { struct opm_lookup *lookup = get_provider_data(auth, SELF_PID); uint32_t rdns_pid, ident_pid; @@ -949,5 +949,6 @@ struct auth_provider opm_provider = .start = opm_start, .cancel = opm_cancel, .timeout = opm_cancel, + .completed = opm_initiate, .opt_handlers = opm_options, };