X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/07a874fd9b990c4ea1e370d350fc77f9ecc171b5..f8a94f0de88c5cbf24ef4d5a7d5cba1ead86afff:/exclude.c diff --git a/exclude.c b/exclude.c index 27dd303b..23ee743d 100644 --- a/exclude.c +++ b/exclude.c @@ -220,8 +220,14 @@ struct exclude_struct **make_exclude_list(const char *fname, int fatal, int include) { struct exclude_struct **list=list1; - FILE *f = fopen(fname,"r"); + FILE *f; char line[MAXPATHLEN]; + + if (strcmp(fname, "-")) { + f = fopen(fname,"r"); + } else { + f = fdopen(0, "r"); + } if (!f) { if (fatal) { rsyserr(FERROR, errno, @@ -335,7 +341,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 +354,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;