diff options
author | ache <ache@FreeBSD.org> | 1996-10-23 16:46:47 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1996-10-23 16:46:47 +0000 |
commit | 6042dbe6e1cb576e2169e694e05971eb51f6941f (patch) | |
tree | 33ba45b857985ad4b662c9dec0c9799b26cb898c /usr.bin/locate | |
parent | 0732ee025a9b998b18effcf151b262b3401c5fbb (diff) | |
download | FreeBSD-src-6042dbe6e1cb576e2169e694e05971eb51f6941f.zip FreeBSD-src-6042dbe6e1cb576e2169e694e05971eb51f6941f.tar.gz |
Rename FNM_ICASE to FNM_CASEFOLD
Diffstat (limited to 'usr.bin/locate')
-rw-r--r-- | usr.bin/locate/locate/fastfind.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/locate/locate/fastfind.c b/usr.bin/locate/locate/fastfind.c index dd95287..9e90c89 100644 --- a/usr.bin/locate/locate/fastfind.c +++ b/usr.bin/locate/locate/fastfind.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: fastfind.c,v 1.3 1996/10/13 01:44:34 wosch Exp $ + * $Id: fastfind.c,v 1.4 1996/10/20 16:54:51 wosch Exp $ */ @@ -305,7 +305,7 @@ fastfind !fnmatch(pathpart, path, 0)) #else !fnmatch(pathpart, path, - FNM_ICASE)) + FNM_CASEFOLD)) #endif /* !FF_ICASE */ { if (f_silent) |