Blame SOURCES/0049-IPA_SUBDOMAINS-Rename-_refresh_view-to-_refresh_view.patch

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