diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2011-09-24 12:30:32 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2011-09-28 09:06:57 -0400 |
commit | ea40c46597f124f08802b6a6422394777d9bfb91 (patch) | |
tree | d92d47ed665d43886246e0ee7bc260ad229ea7bd | |
parent | f5b6f977d4144c28e9c66f3f1c9d634d595d1117 (diff) | |
download | sssd-ea40c46597f124f08802b6a6422394777d9bfb91.tar.gz sssd-ea40c46597f124f08802b6a6422394777d9bfb91.tar.xz sssd-ea40c46597f124f08802b6a6422394777d9bfb91.zip |
IPA access: hostname comparison should be case-insensitive
-rw-r--r-- | src/providers/ipa/ipa_access.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ipa/ipa_access.c b/src/providers/ipa/ipa_access.c index a74d6a97c..10f1cb7e6 100644 --- a/src/providers/ipa/ipa_access.c +++ b/src/providers/ipa/ipa_access.c @@ -380,7 +380,7 @@ static void hbac_get_rule_info_step(struct tevent_req *req) goto fail; } - if (strcmp(hostname, ipa_hostname) == 0) { + if (strcasecmp(hostname, ipa_hostname) == 0) { hbac_ctx->ipa_host = hbac_ctx->hosts[i]; break; } |