isspace() to int.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13796
dc483132-0cff-0310-8789-
dd5450dbe970
+2001-10-10 Ezra Peisach <epeisach@mit.edu>
+
+ * localaddr.c (krb5_os_localaddr_profile): Cast argument to
+ isspace() to int.
+
2001-10-09 Ken Raeburn <raeburn@mit.edu>
* os-proto.h: Make prototypes unconditional.
#endif
for (cp = *iter, next = 0; *cp; cp = next) {
- while (isspace (*cp) || *cp == ',')
+ while (isspace ((int) *cp) || *cp == ',')
cp++;
if (*cp == 0)
break;
fprintf (stderr, " addr found in '%s'\n", cp);
#endif
this = cp;
- while (*cp != 0 && !isspace(*cp) && *cp != ',')
+ while (*cp != 0 && !isspace((int) *cp) && *cp != ',')
cp++;
if (*cp != 0) {
next = cp + 1;