diff options
author | Peter Wemm <peter@FreeBSD.org> | 1997-06-22 10:55:49 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 1997-06-22 10:55:49 +0000 |
commit | 3398c9be05502e12d986ef6e89739df1dc9ba9e6 (patch) | |
tree | 8684660dbfd105deed9a44c9e97d4f56b231fac1 /contrib/cvs/src/wrapper.c | |
parent | aa134866ad3127753d521cc9aca28a226d941aa4 (diff) |
Notes
Diffstat (limited to 'contrib/cvs/src/wrapper.c')
-rw-r--r-- | contrib/cvs/src/wrapper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/cvs/src/wrapper.c b/contrib/cvs/src/wrapper.c index 13e7e43d1656..825cdcdeb7ae 100644 --- a/contrib/cvs/src/wrapper.c +++ b/contrib/cvs/src/wrapper.c @@ -387,7 +387,7 @@ wrap_name_has (name,has) char *temp; for(x=0;x<count;++x) - if (fnmatch (wrap_list[x]->wildCard, name, 0) == 0){ + if (CVS_FNMATCH (wrap_list[x]->wildCard, name, 0) == 0){ switch(has){ case WRAP_TOCVS: temp=wrap_list[x]->tocvsFilter; @@ -418,7 +418,7 @@ wrap_matching_entry (name) int x,count=wrap_count+wrap_saved_count; for(x=0;x<count;++x) - if (fnmatch (wrap_list[x]->wildCard, name, 0) == 0) + if (CVS_FNMATCH (wrap_list[x]->wildCard, name, 0) == 0) return wrap_list[x]; return (WrapperEntry *)NULL; } |