compare keytab types case insensitively
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@10813 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -88,7 +88,7 @@ krb5_kt_resolve(krb5_context context,
|
||||
}
|
||||
|
||||
for(i = 0; i < context->num_kt_types; i++) {
|
||||
if(strncmp(type, context->kt_types[i].prefix, type_len) == 0)
|
||||
if(strncasecmp(type, context->kt_types[i].prefix, type_len) == 0)
|
||||
break;
|
||||
}
|
||||
if(i == context->num_kt_types) {
|
||||
|
Reference in New Issue
Block a user