diff options
| author | Wolfram Schneider <wosch@FreeBSD.org> | 1996-12-13 20:28:24 +0000 |
|---|---|---|
| committer | Wolfram Schneider <wosch@FreeBSD.org> | 1996-12-13 20:28:24 +0000 |
| commit | f8a459d38513faf811e3b523f5a8ee0de2becda3 (patch) | |
| tree | 6186276c83d061c648db5b79c208b1c79887a719 /usr.bin | |
| parent | 3b4d52b99d9f01055ce5f4a72dba71277a764398 (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/locate/locate/fastfind.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/locate/locate/fastfind.c b/usr.bin/locate/locate/fastfind.c index 79dabfe12819..82fed563e73b 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.5 1996/10/23 16:46:47 ache Exp $ + * $Id: fastfind.c,v 1.6 1996/10/27 19:18:06 alex Exp $ */ @@ -185,6 +185,9 @@ fastfind #ifdef FF_ICASE /* set patend char to true */ + for (c = 0; c < UCHAR_MAX + 1; c++) + table[c] = 0; + table[TOLOWER(*patend)] = 1; table[toupper(*patend)] = 1; #endif /* FF_ICASE */ |
