mirror of
https://github.com/matrix-construct/construct
synced 2024-10-30 18:39:02 +01:00
providers/ident: restore accidentally deleted line
This commit is contained in:
parent
9f9ab5c2d6
commit
1e89fb5fa2
1 changed files with 3 additions and 1 deletions
|
@ -293,7 +293,8 @@ ident_destroy(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool ident_start(struct auth_client *auth)
|
static bool
|
||||||
|
ident_start(struct auth_client *auth)
|
||||||
{
|
{
|
||||||
struct ident_query *query = rb_malloc(sizeof(struct ident_query));
|
struct ident_query *query = rb_malloc(sizeof(struct ident_query));
|
||||||
struct rb_sockaddr_storage l_addr, c_addr;
|
struct rb_sockaddr_storage l_addr, c_addr;
|
||||||
|
@ -392,6 +393,7 @@ struct auth_opts_handler ident_options[] =
|
||||||
struct auth_provider ident_provider =
|
struct auth_provider ident_provider =
|
||||||
{
|
{
|
||||||
.id = PROVIDER_IDENT,
|
.id = PROVIDER_IDENT,
|
||||||
|
.start = ident_start,
|
||||||
.destroy = ident_destroy,
|
.destroy = ident_destroy,
|
||||||
.cancel = ident_cancel,
|
.cancel = ident_cancel,
|
||||||
.timeout = ident_cancel,
|
.timeout = ident_cancel,
|
||||||
|
|
Loading…
Reference in a new issue