X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/d5ee1f8e7a370884aa9c5353de5129728ed9a37b..dc5ddbccace1f4f37d57ce5d961117effc28a356:/exclude.c diff --git a/exclude.c b/exclude.c index 9a837411..e82bafa5 100644 --- a/exclude.c +++ b/exclude.c @@ -86,7 +86,7 @@ void add_exclude_list(char *pattern,char ***list) if (strcmp(pattern,"!") == 0) { if (verbose > 2) - fprintf(stderr,"clearing exclude list\n"); + fprintf(FERROR,"clearing exclude list\n"); while ((len)--) free((*list)[len]); free((*list)); @@ -104,7 +104,7 @@ void add_exclude_list(char *pattern,char ***list) out_of_memory("add_exclude"); if (verbose > 2) - fprintf(stderr,"add_exclude(%s)\n",pattern); + fprintf(FERROR,"add_exclude(%s)\n",pattern); (*list)[len+1] = NULL; } @@ -121,7 +121,7 @@ char **make_exclude_list(char *fname,char **list1,int fatal) char line[MAXPATHLEN]; if (!f) { if (fatal) { - fprintf(stderr,"%s : %s\n",fname,strerror(errno)); + fprintf(FERROR,"%s : %s\n",fname,strerror(errno)); exit_cleanup(1); } return list;