2001-07-06 Ezra Peisach <epeisach@mit.edu>
+ * conv_princ.c (krb5_425_conv_principal): Cast argument to tolower
+ to int.
+
* get_in_tkt.c: Include os-proto.h for _krb5_conf_boolean prototype.
* Makefile.in (LOCALINCLUDES): Add -I$(srcdir)/../os so os-proto.h
if (domain) {
for (cp = domain; *cp; cp++)
if (isupper((int) (*cp)))
- *cp = tolower(*cp);
+ *cp = tolower((int) *cp);
strncat(buf, ".", sizeof(buf) - 1 - strlen(buf));
strncat(buf, domain, sizeof(buf) - 1 - strlen(buf));
krb5_xfree(domain);