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

providers/ident: restore accidentally deleted line

This commit is contained in:
Elizabeth Myers 2016-03-30 23:30:09 -05:00
parent 9f9ab5c2d6
commit 1e89fb5fa2

View file

@ -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,