387014f928
required for building freeipa-4.5.x in rawhide
55 lines
2.1 KiB
Diff
55 lines
2.1 KiB
Diff
From 17ab121a6c69d74acf1d40f2bbcbe90d77bb6b8a Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= <fidencio@redhat.com>
|
|
Date: Fri, 24 Mar 2017 08:08:58 +0100
|
|
Subject: [PATCH 52/97] IPA_SUBDOMAINS: Rename _refresh_view() to
|
|
_refresh_view_name()
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
This method got renamed in order to match better with what it does
|
|
currently.
|
|
|
|
Related:
|
|
https://pagure.io/SSSD/sssd/issue/3001
|
|
|
|
Signed-off-by: Fabiano Fidêncio <fidencio@redhat.com>
|
|
|
|
Reviewed-by: Sumit Bose <sbose@redhat.com>
|
|
Reviewed-by: Pavel Březina <pbrezina@redhat.com>
|
|
---
|
|
src/providers/ipa/ipa_subdomains.c | 7 ++++---
|
|
1 file changed, 4 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/src/providers/ipa/ipa_subdomains.c b/src/providers/ipa/ipa_subdomains.c
|
|
index 01a0ce812d861b24565d2f71f27d6b8ceb2965bc..bf6f6ab1fa8bfff7ea102dd219c9ddbbab065b2b 100644
|
|
--- a/src/providers/ipa/ipa_subdomains.c
|
|
+++ b/src/providers/ipa/ipa_subdomains.c
|
|
@@ -1808,7 +1808,7 @@ static void ipa_subdomains_refresh_ranges_done(struct tevent_req *subreq);
|
|
static void ipa_subdomains_refresh_certmap_done(struct tevent_req *subreq);
|
|
static void ipa_subdomains_refresh_master_done(struct tevent_req *subreq);
|
|
static void ipa_subdomains_refresh_slave_done(struct tevent_req *subreq);
|
|
-static void ipa_subdomains_refresh_view_done(struct tevent_req *subreq);
|
|
+static void ipa_subdomains_refresh_view_name_done(struct tevent_req *subreq);
|
|
static void ipa_domain_refresh_resolution_order_done(struct tevent_req *subreq);
|
|
|
|
static struct tevent_req *
|
|
@@ -2023,11 +2023,12 @@ static void ipa_subdomains_refresh_slave_done(struct tevent_req *subreq)
|
|
return;
|
|
}
|
|
|
|
- tevent_req_set_callback(subreq, ipa_subdomains_refresh_view_done, req);
|
|
+ tevent_req_set_callback(subreq, ipa_subdomains_refresh_view_name_done,
|
|
+ req);
|
|
return;
|
|
}
|
|
|
|
-static void ipa_subdomains_refresh_view_done(struct tevent_req *subreq)
|
|
+static void ipa_subdomains_refresh_view_name_done(struct tevent_req *subreq)
|
|
{
|
|
struct ipa_subdomains_refresh_state *state;
|
|
struct tevent_req *req;
|
|
--
|
|
2.12.2
|
|
|