opm: silly bugfix
This commit is contained in:
parent
dd598516c8
commit
269646ed4c
1 changed files with 2 additions and 1 deletions
|
@ -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 */
|
/* This is called every time a provider is completed as long as we are marked not done */
|
||||||
static void
|
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);
|
struct opm_lookup *lookup = get_provider_data(auth, SELF_PID);
|
||||||
uint32_t rdns_pid, ident_pid;
|
uint32_t rdns_pid, ident_pid;
|
||||||
|
@ -949,5 +949,6 @@ struct auth_provider opm_provider =
|
||||||
.start = opm_start,
|
.start = opm_start,
|
||||||
.cancel = opm_cancel,
|
.cancel = opm_cancel,
|
||||||
.timeout = opm_cancel,
|
.timeout = opm_cancel,
|
||||||
|
.completed = opm_initiate,
|
||||||
.opt_handlers = opm_options,
|
.opt_handlers = opm_options,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue