From 1b355f73a1315b7858a13058a01bbb397da53029 Mon Sep 17 00:00:00 2001 From: short <> Date: Wed, 19 Jul 2000 21:16:34 +0000 Subject: [PATCH] Fixed action-hasing bug with broken cas insesitiveness. --- timeplan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timeplan.c b/timeplan.c index f8fd739..e48910c 100644 --- a/timeplan.c +++ b/timeplan.c @@ -183,7 +183,7 @@ static unsigned calchash(const char *s) { unsigned r=57; - while (*s) r=r*7+11*(*s++); + while (*s) r=r*7+11*toupper(*s++); return r; } -- 1.8.3.1