diff options
Diffstat (limited to 'support/export/client.c')
-rw-r--r-- | support/export/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/export/client.c b/support/export/client.c index da3a976..03f7917 100644 --- a/support/export/client.c +++ b/support/export/client.c @@ -70,7 +70,7 @@ client_lookup(char *hname, int canonical) } } else { for (clp = clientlist[htype]; clp; clp = clp->m_next) { - if (strcmp(hname, clp->m_hostname)==0) + if (strcasecmp(hname, clp->m_hostname)==0) break; } } |