X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/07a874fd9b990c4ea1e370d350fc77f9ecc171b5..fca9a9b0f044a9ef93cea27dadc01ecd56d1274c:/exclude.c diff --git a/exclude.c b/exclude.c index 27dd303b..dc469e18 100644 --- a/exclude.c +++ b/exclude.c @@ -335,7 +335,7 @@ char *get_exclude_tok(char *p) return(NULL); /* Skip over any initial spaces */ - while(isspace((int) *s)) + while (isspace(* (unsigned char *) s)) s++; /* Are we at the end of the string? */ @@ -348,7 +348,7 @@ char *get_exclude_tok(char *p) s+=2; /* Skip to the next space or the end of the string */ - while(!isspace((int) *s) && *s != '\0') + while (!isspace(* (unsigned char *) s) && *s != '\0') s++; } else { t=NULL;