See ChangeLog entry 2002-05-14 16:22 UTC-0400 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2002-05-14 20:24:04 +00:00
parent 764cdb4771
commit 5b1b3c05df
2 changed files with 6 additions and 1 deletions

View File

@@ -7,6 +7,11 @@
For example:
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
* contrib/rdd_ads/ads1.c
! fixed a bug in adsSeek() for date indexes, changes was posted
by Carlos Mora.
2002-05-14 16:22 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* source/rdd/dbfntx/dbfntx1.c
! Changed usage of stricmp to hb_stricmp, because stricmp is not an
ANSI standard function.

View File

@@ -2826,7 +2826,7 @@ static LPTAGINFO ntxFindIndex( NTXAREAP pArea , PHB_ITEM lpOrder )
{
do
{
if( !stricmp( current->TagName , hb_itemGetCPtr( lpOrder ) ) )
if( !hb_stricmp( current->TagName , hb_itemGetCPtr( lpOrder ) ) )
return current;
current = current->pNext;
} while( current );