diff options
author | Harshavardhana <fharshav@redhat.com> | 2011-11-15 14:44:24 -0800 |
---|---|---|
committer | Vijay Bellur <vijay@gluster.com> | 2011-11-16 21:08:56 -0800 |
commit | 51a78ad316975763d45c11affa571892e03643e8 (patch) | |
tree | 9406dee3a6139ebd9624fafd92af0a156d531fcf /xlators/cluster/dht/src/dht.c | |
parent | 8c182c6bf700cdc8a7e2d4b75109ad0acee2e70d (diff) |
glusterfs: An effort to fix all the spell mistakes and typo
in the entire glusterfs codebase.
This patch fixes many of spell mistakes and typo in the entire
glusterfs codebase and all supported modules.
Change-Id: I83238a41aa08118df3cf4d1d605505dd3cda35a1
BUG: 3809
Signed-off-by: Harshavardhana <fharshav@redhat.com>
Reviewed-on: http://review.gluster.com/731
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Amar Tumballi <amar@gluster.com>
Reviewed-by: Vijay Bellur <vijay@gluster.com>
Diffstat (limited to 'xlators/cluster/dht/src/dht.c')
-rw-r--r-- | xlators/cluster/dht/src/dht.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xlators/cluster/dht/src/dht.c b/xlators/cluster/dht/src/dht.c index 7b32a9766a9..c5bb36be05c 100644 --- a/xlators/cluster/dht/src/dht.c +++ b/xlators/cluster/dht/src/dht.c @@ -299,12 +299,12 @@ reconfigure (xlator_t *this, dict_t *options) if (strcasecmp (temp_str, "auto")) { if (!gf_string2boolean (temp_str, &search_unhashed)) { gf_log(this->name, GF_LOG_DEBUG, "Reconfigure:" - " lookup-unahashed reconfigured (%s)", + " lookup-unhashed reconfigured (%s)", temp_str); conf->search_unhashed = search_unhashed; } else { gf_log(this->name, GF_LOG_ERROR, "Reconfigure:" - " lookup-unahashed should be boolean," + " lookup-unhashed should be boolean," " not (%s), defaulting to (%d)", temp_str, conf->search_unhashed); //return -1; @@ -313,7 +313,7 @@ reconfigure (xlator_t *this, dict_t *options) } } else { gf_log(this->name, GF_LOG_DEBUG, "Reconfigure:" - " lookup-unahashed reconfigured auto "); + " lookup-unhashed reconfigured auto "); conf->search_unhashed = GF_DHT_LOOKUP_UNHASHED_AUTO; } } |