* realmofhost.c (krb_realmofhost): Likewise.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13369
dc483132-0cff-0310-8789-
dd5450dbe970
2001-06-18 Ezra Peisach <epeisach@mit.edu>
* kparse.c (strutol): Cast argument to isupper()/tolower() to int.
+ * realmofhost.c (krb_realmofhost): Likewise.
2001-06-18 Ezra Peisach <epeisach@mit.edu>
{
char *q;
for (q=start; *q; q++)
- if (isupper(*q))
- *q=tolower(*q);
+ if (isupper((int) *q))
+ *q=tolower((int) *q);
return(start);
}
\f
/* Upper-case realm */
for (cp = ret_realm; *cp; cp++)
if (islower((int) (*cp)))
- *cp = toupper(*cp);
+ *cp = toupper((int) *cp);
} else {
krb_get_lrealm(ret_realm, 1);
}