* `LICENSE' that comes with the fcron source distribution.
*/
- /* $Id: allow.c,v 1.7 2001-06-05 10:19:10 thib Exp $ */
+ /* $Id: allow.c,v 1.8 2001-06-12 06:40:54 thib Exp $ */
#include "fcrontab.h"
#include "allow.h"
/* skip leading and trailing blanks, comments */
start = buf;
- while ( *start != '\0' && isspace(*start) )
+ while ( *start != '\0' && isspace( (int) *start) )
start++;
if ( *start == '#' || *start == '\0' )
continue;
* `LICENSE' that comes with the fcron source distribution.
*/
- /* $Id: subs.c,v 1.8 2001-05-17 00:53:55 thib Exp $ */
+ /* $Id: subs.c,v 1.9 2001-06-12 06:40:33 thib Exp $ */
#include "global.h"
#include "subs.h"
/* scan backward to the first character that is not a space */
do {c--;}
- while (c >= str && isspace(*c));
+ while (c >= str && isspace( (int) *c));
/* if last char is a '\n', we remove it */
if ( *c == '\n' )