From b67dbadc979cbe86545e2275223483d429b74747 Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Mon, 23 Nov 2009 14:33:55 -0500 Subject: Split helpers for child processes Moves several functions out of providers/krb5 hierarchy into a separate module so it can be shared by the ldap child. --- server/providers/ipa/ipa_init.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'server/providers/ipa') diff --git a/server/providers/ipa/ipa_init.c b/server/providers/ipa/ipa_init.c index a3f381e43..a187d1590 100644 --- a/server/providers/ipa/ipa_init.c +++ b/server/providers/ipa/ipa_init.c @@ -27,6 +27,7 @@ #include #include +#include "providers/child_common.h" #include "providers/ipa/ipa_common.h" #include "providers/krb5/krb5_auth.h" #include "providers/ipa/ipa_auth.h" @@ -195,7 +196,7 @@ int sssm_ipa_auth_init(struct be_ctx *bectx, } sige = tevent_add_signal(bectx->ev, ctx, SIGCHLD, SA_SIGINFO, - krb5_child_sig_handler, NULL); + child_sig_handler, NULL); if (sige == NULL) { DEBUG(1, ("tevent_add_signal failed.\n")); ret = ENOMEM; -- cgit