diff options
| -rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-utils.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-utils.c b/xlators/mgmt/glusterd/src/glusterd-utils.c index e07ce143b19..036457a1b0c 100644 --- a/xlators/mgmt/glusterd/src/glusterd-utils.c +++ b/xlators/mgmt/glusterd/src/glusterd-utils.c @@ -2619,8 +2619,8 @@ glusterd_friend_find_by_hostname (const char *hoststr,          GF_ASSERT (priv);          list_for_each_entry (entry, &priv->peers, uuid_list) { -                if (!strncmp (entry->hostname, hoststr, -                              1024)) { +                if (!strncasecmp (entry->hostname, hoststr, +                                  1024)) {                          gf_log ("glusterd", GF_LOG_DEBUG,                                   "Friend %s found.. state: %d", hoststr, @@ -2658,8 +2658,8 @@ glusterd_friend_find_by_hostname (const char *hoststr,                          goto out;                  list_for_each_entry (entry, &priv->peers, uuid_list) { -                        if (!strncmp (entry->hostname, host, -                            1024) || !strncmp (entry->hostname,hname, +                        if (!strncasecmp (entry->hostname, host, +                            1024) || !strncasecmp (entry->hostname,hname,                              1024)) {                                  gf_log ("glusterd", GF_LOG_DEBUG,                                          "Friend %s found.. state: %d",  | 
