diff options
author | Vijay Bellur <vbellur@redhat.com> | 2016-04-09 00:40:38 -0400 |
---|---|---|
committer | Jeff Darcy <jdarcy@redhat.com> | 2016-07-09 06:51:08 -0700 |
commit | 30ff5b69883537f743e38f060d4d8e229a84863a (patch) | |
tree | 8022d1c0621fac1760ef564663285c6656dcb97f /xlators | |
parent | 693eccd456c4fc7dfadb72069da906544cf19733 (diff) |
cluster/afr: Fix a minor typo in afr-self-heald.c
s/outout/output/
Change-Id: I2aec770cdae513cd4932e5fd56e0267584e44cae
Signed-off-by: Vijay Bellur <vbellur@redhat.com>
Reviewed-on: http://review.gluster.org/13930
Smoke: Gluster Build System <jenkins@build.gluster.org>
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
Reviewed-by: Zhou Zhengping <johnzzpcrystal@gmail.com>
Diffstat (limited to 'xlators')
-rw-r--r-- | xlators/cluster/afr/src/afr-self-heald.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/xlators/cluster/afr/src/afr-self-heald.c b/xlators/cluster/afr/src/afr-self-heald.c index 545ffa0a1d7..b29a822568d 100644 --- a/xlators/cluster/afr/src/afr-self-heald.c +++ b/xlators/cluster/afr/src/afr-self-heald.c @@ -738,7 +738,7 @@ afr_shd_dict_add_crawl_event (xlator_t *this, dict_t *output, if (ret) { gf_msg (this->name, GF_LOG_ERROR, -ret, AFR_MSG_DICT_SET_FAILED, - "Could not add statistics_healed_count to outout"); + "Could not add statistics_healed_count to output"); goto out; } @@ -748,7 +748,7 @@ afr_shd_dict_add_crawl_event (xlator_t *this, dict_t *output, if (ret) { gf_msg (this->name, GF_LOG_ERROR, -ret, AFR_MSG_DICT_SET_FAILED, - "Could not add statistics_split_brain_count to outout"); + "Could not add statistics_split_brain_count to output"); goto out; } @@ -768,7 +768,7 @@ afr_shd_dict_add_crawl_event (xlator_t *this, dict_t *output, if (ret) { gf_msg (this->name, GF_LOG_ERROR, -ret, AFR_MSG_DICT_SET_FAILED, - "Could not add statistics_healed_failed_count to outout"); + "Could not add statistics_healed_failed_count to output"); goto out; } @@ -778,7 +778,7 @@ afr_shd_dict_add_crawl_event (xlator_t *this, dict_t *output, if (ret) { gf_msg (this->name, GF_LOG_ERROR, -ret, AFR_MSG_DICT_SET_FAILED, - "Could not add statistics_crawl_start_time to outout"); + "Could not add statistics_crawl_start_time to output"); goto out; } else { start_time_str = NULL; @@ -797,7 +797,7 @@ afr_shd_dict_add_crawl_event (xlator_t *this, dict_t *output, if (ret) { gf_msg (this->name, GF_LOG_ERROR, -ret, AFR_MSG_DICT_SET_FAILED, - "Could not add statistics_crawl_end_time to outout"); + "Could not add statistics_crawl_end_time to output"); goto out; } else { end_time_str = NULL; @@ -810,7 +810,7 @@ afr_shd_dict_add_crawl_event (xlator_t *this, dict_t *output, if (ret) { gf_msg (this->name, GF_LOG_ERROR, -ret, AFR_MSG_DICT_SET_FAILED, - "Could not add statistics_inprogress to outout"); + "Could not add statistics_inprogress to output"); goto out; } |