From cafe4dd8df1c0f6221a047dcaa6f20d100a3558c Mon Sep 17 00:00:00 2001 From: Elizabeth Myers Date: Thu, 10 Mar 2016 08:09:16 -0600 Subject: [PATCH] authd: plug in new C type. --- authd/authd.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/authd/authd.c b/authd/authd.c index 623368330..503330040 100644 --- a/authd/authd.c +++ b/authd/authd.c @@ -20,6 +20,7 @@ #include "authd.h" #include "dns.h" +#include "provider.h" #define MAXPARA 10 @@ -28,8 +29,9 @@ static void handle_stat(int parc, char *parv[]); rb_helper *authd_helper = NULL; authd_cmd_handler authd_cmd_handlers[256] = { - ['H'] = handle_reload, + ['C'] = handle_new_connection, ['D'] = resolve_dns, + ['H'] = handle_reload, ['S'] = handle_stat, };