+2001-06-18 Ezra Peisach <epeisach@mit.edu>
+
+ * kpropd.c (authorized_principal): Cast argument to ispace() to int.
+
2001-01-30 Ken Raeburn <raeburn@mit.edu>
* kpropd.c (load_database): Initialize save_stderr variable.
/* if the next character is not whitespace or nul, then
the match is only partial. continue on to new lines. */
- if (*ptr && !isspace(*ptr))
+ if (*ptr && !isspace((int) *ptr))
continue;
/* otherwise, skip trailing whitespace */
- for (; *ptr && isspace(*ptr); ptr++) ;
+ for (; *ptr && isspace((int) *ptr); ptr++) ;
/* now, look for an etype string. if there isn't one,
return true. if there is an invalid string, continue.