From 1e89fb5fa257c7457e90e79e00c50576b5ca6a1a Mon Sep 17 00:00:00 2001 From: Elizabeth Myers Date: Wed, 30 Mar 2016 23:30:09 -0500 Subject: [PATCH] providers/ident: restore accidentally deleted line --- authd/providers/ident.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/authd/providers/ident.c b/authd/providers/ident.c index 6533c0da9..96bb7bc2a 100644 --- a/authd/providers/ident.c +++ b/authd/providers/ident.c @@ -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 rb_sockaddr_storage l_addr, c_addr; @@ -392,6 +393,7 @@ struct auth_opts_handler ident_options[] = struct auth_provider ident_provider = { .id = PROVIDER_IDENT, + .start = ident_start, .destroy = ident_destroy, .cancel = ident_cancel, .timeout = ident_cancel,