Codebase list pacemaker / 0ac7f20
New patches fixing typos Ferenc Wágner 7 years ago
3 changed file(s) with 76 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 From: =?utf-8?q?Ferenc_W=C3=A1gner?= <wferi@niif.hu>
1 Date: Thu, 23 Jun 2016 22:38:51 +0200
2 Subject: Fix typo: Ingor{e,ing} -> Ignor{e,ing}
3
4 ---
5 ChangeLog | 4 ++--
6 pengine/master.c | 2 +-
7 2 files changed, 3 insertions(+), 3 deletions(-)
8
9 diff --git a/ChangeLog b/ChangeLog
10 index 43d6d21..25a57f1 100644
11 --- a/ChangeLog
12 +++ b/ChangeLog
13 @@ -389,7 +389,7 @@
14 + cib: Ensure 'cibadmin -R/--replace' commands get replies
15 + cib: Erasing the cib is an admin action, bump the admin_epoch instead
16 + cib: Fix remote cib based on TLS
17 - + cib: Ingore patch failures if we already have their contents
18 + + cib: Ignore patch failures if we already have their contents
19 + cib: Validate that everyone still sees the same configuration once all updates have completed
20 + cibadmin: Allow priviliged clients to perform tasks as unpriviliged users
21 + cibadmin: Remove dangerous commands that exposed unnecessary implementation internal details
22 @@ -1625,7 +1625,7 @@
23 + Medium: crmd: Clean up and optimize the DC election algorithm
24 + Medium: crmd: Fix memory leak in shutdown
25 + Medium: crmd: Fix memory leaks spotted by Valgrind
26 - + Medium: crmd: Ingore join messages from hosts other than our DC
27 + + Medium: crmd: Ignore join messages from hosts other than our DC
28 + Medium: crmd: Limit the scope of resource updates to the status section
29 + Medium: crmd: Prevent the crmd from being respawned if its told to shut down when it did not ask to be
30 + Medium: crmd: Re-check the election status after membership events
31 diff --git a/pengine/master.c b/pengine/master.c
32 index e0f9208..466ecb8 100644
33 --- a/pengine/master.c
34 +++ b/pengine/master.c
35 @@ -475,7 +475,7 @@ master_score(resource_t * rsc, node_t * node, int not_set_value)
36
37 if (node == NULL) {
38 if (rsc->fns->state(rsc, TRUE) < RSC_ROLE_STARTED) {
39 - pe_rsc_trace(rsc, "Ingoring master score for %s: unknown state", rsc->id);
40 + pe_rsc_trace(rsc, "Ignoring master score for %s: unknown state", rsc->id);
41 return score;
42 }
43
0 From: =?utf-8?q?Ferenc_W=C3=A1gner?= <wferi@niif.hu>
1 Date: Thu, 23 Jun 2016 22:36:57 +0200
2 Subject: Fix typo: Substraction -> Subtraction
3
4 ---
5 lib/common/xml.c | 4 ++--
6 1 file changed, 2 insertions(+), 2 deletions(-)
7
8 diff --git a/lib/common/xml.c b/lib/common/xml.c
9 index 1c39e5c..9ce4cf3 100644
10 --- a/lib/common/xml.c
11 +++ b/lib/common/xml.c
12 @@ -2102,7 +2102,7 @@ xml_apply_patchset_v1(xmlNode *xml, xmlNode *patchset, bool check_version)
13 xmlNode *removed = find_xml_node(patchset, "diff-removed", FALSE);
14 xmlNode *old = copy_xml(xml);
15
16 - crm_trace("Substraction Phase");
17 + crm_trace("Subtraction Phase");
18 for (child_diff = __xml_first_child(removed); child_diff != NULL;
19 child_diff = __xml_next(child_diff)) {
20 CRM_CHECK(root_nodes_seen == 0, rc = FALSE);
21 @@ -4114,7 +4114,7 @@ apply_xml_diff(xmlNode * old, xmlNode * diff, xmlNode ** new)
22 crm_trace_nonlog);
23 }
24
25 - crm_trace("Substraction Phase");
26 + crm_trace("Subtraction Phase");
27 for (child_diff = __xml_first_child(removed); child_diff != NULL;
28 child_diff = __xml_next(child_diff)) {
29 CRM_CHECK(root_nodes_seen == 0, result = FALSE);
33 Make-the-asciidoc-documentation-reproducible.patch
44 path_max.patch
55 alerts-make-the-scripts-executable.patch
6 Fix-typo-Substraction-Subtraction.patch
7 Fix-typo-Ingor-e-ing-Ignor-e-ing.patch