From b36751b7970a699f453da471261d258868741281 Mon Sep 17 00:00:00 2001 From: skotlex Date: Fri, 28 Apr 2006 14:36:55 +0000 Subject: - Added function stristr to strlib.c, used by mob.c and item_db.c for case-insensitive seeks. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6345 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/itemdb.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/map/itemdb.c') diff --git a/src/map/itemdb.c b/src/map/itemdb.c index 796712af3..4f6079f3a 100644 --- a/src/map/itemdb.c +++ b/src/map/itemdb.c @@ -9,6 +9,7 @@ #include "../common/malloc.h" #include "../common/showmsg.h" #include "../common/grfio.h" +#include "../common/strlib.h" #include "map.h" #include "battle.h" #include "itemdb.h" @@ -75,9 +76,9 @@ static int itemdb_searchname_array_sub(DBKey key,void * data,va_list ap) str=va_arg(ap,char *); if (item == dummy_item) return 1; //Invalid item. - if(strstr(item->jname,str)) + if(stristr(item->jname,str)) return 0; - if(strstr(item->name,str)) + if(stristr(item->name,str)) return 0; return strcmpi(item->jname,str); } -- cgit v1.2.3-70-g09d2