diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2013-07-17 13:28:42 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-07-18 16:15:01 +0200 |
commit | 6a281a49197ff76637bd6037692bb9569df8f2da (patch) | |
tree | 8ca4a458b5143fcdb703d275fdcc578d73b50a47 | |
parent | e5d5a93ab88e5313a11056130060662c97285336 (diff) | |
download | sssd-6a281a49197ff76637bd6037692bb9569df8f2da.tar.gz sssd-6a281a49197ff76637bd6037692bb9569df8f2da.tar.xz sssd-6a281a49197ff76637bd6037692bb9569df8f2da.zip |
Remove unused be_ctx->sigchld_ctx
-rw-r--r-- | src/providers/data_provider_be.c | 8 | ||||
-rw-r--r-- | src/providers/dp_backend.h | 1 |
2 files changed, 0 insertions, 9 deletions
diff --git a/src/providers/data_provider_be.c b/src/providers/data_provider_be.c index 1e11bfd2..ae9ba81c 100644 --- a/src/providers/data_provider_be.c +++ b/src/providers/data_provider_be.c @@ -2822,14 +2822,6 @@ int be_process_init(TALLOC_CTX *mem_ctx, goto fail; } - ret = sss_sigchld_init(ctx, ctx->ev, &ctx->sigchld_ctx); - if (ret != EOK) { - DEBUG(SSSDBG_FATAL_FAILURE, - ("Could not initialize sigchld context: [%s]\n", - strerror(ret))); - goto fail; - } - return EOK; fail: diff --git a/src/providers/dp_backend.h b/src/providers/dp_backend.h index 638b878c..e07b4e64 100644 --- a/src/providers/dp_backend.h +++ b/src/providers/dp_backend.h @@ -118,7 +118,6 @@ struct be_ctx { const char *conf_path; struct be_failover_ctx *be_fo; struct be_resolv_ctx *be_res; - struct sss_sigchild_ctx *sigchld_ctx; /* Functions to be invoked when the * backend goes online or offline |