Blame SOURCES/0116-IPA-use-forest-name-when-looking-up-the-Global-Catal.patch
|
|
62a0d7 |
From 0a7c43151c362bf8e7276fc1d08c49cb91fdb005 Mon Sep 17 00:00:00 2001
|
|
|
62a0d7 |
From: Sumit Bose <sbose@redhat.com>
|
|
|
62a0d7 |
Date: Tue, 17 May 2016 11:54:10 +0200
|
|
|
62a0d7 |
Subject: [PATCH] IPA: use forest name when looking up the Global Catalog
|
|
|
62a0d7 |
|
|
|
62a0d7 |
Resolves https://fedorahosted.org/sssd/ticket/3015
|
|
|
62a0d7 |
|
|
|
62a0d7 |
Reviewed-by: Jakub Hrozek <jhrozek@redhat.com>
|
|
|
62a0d7 |
(cherry picked from commit 149174acae677d1e72a0da431bf0850d55f2ccb4)
|
|
|
62a0d7 |
---
|
|
|
62a0d7 |
src/providers/ipa/ipa_subdomains_server.c | 2 +-
|
|
|
62a0d7 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
62a0d7 |
|
|
|
62a0d7 |
diff --git a/src/providers/ipa/ipa_subdomains_server.c b/src/providers/ipa/ipa_subdomains_server.c
|
|
|
62a0d7 |
index c561118946e2ba76b2b4076e5057b1b5c0075a41..b75266701904d8bd1723bc277ae96d407f90f30d 100644
|
|
|
62a0d7 |
--- a/src/providers/ipa/ipa_subdomains_server.c
|
|
|
62a0d7 |
+++ b/src/providers/ipa/ipa_subdomains_server.c
|
|
|
62a0d7 |
@@ -249,7 +249,7 @@ ipa_ad_ctx_new(struct be_ctx *be_ctx,
|
|
|
62a0d7 |
DEBUG(SSSDBG_TRACE_ALL, "No extra attrs set.\n");
|
|
|
62a0d7 |
}
|
|
|
62a0d7 |
|
|
|
62a0d7 |
- gc_service_name = talloc_asprintf(ad_options, "%s%s", "gc_", subdom->name);
|
|
|
62a0d7 |
+ gc_service_name = talloc_asprintf(ad_options, "%s%s", "gc_", subdom->forest);
|
|
|
62a0d7 |
if (gc_service_name == NULL) {
|
|
|
62a0d7 |
talloc_free(ad_options);
|
|
|
62a0d7 |
return ENOMEM;
|
|
|
62a0d7 |
--
|
|
|
62a0d7 |
2.4.11
|
|
|
62a0d7 |
|