From 5b1b3c05dfdee83ee13a34bf4ce693bf48ddc55b Mon Sep 17 00:00:00 2001 From: "David G. Holm" Date: Tue, 14 May 2002 20:24:04 +0000 Subject: [PATCH] See ChangeLog entry 2002-05-14 16:22 UTC-0400 David G. Holm --- harbour/ChangeLog | 5 +++++ harbour/source/rdd/dbfntx/dbfntx1.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 3306d9594a..fa97e9430e 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -7,6 +7,11 @@ For example: 2002-12-01 23:12 UTC+0100 Foo Bar */ + * 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 * source/rdd/dbfntx/dbfntx1.c ! Changed usage of stricmp to hb_stricmp, because stricmp is not an ANSI standard function. diff --git a/harbour/source/rdd/dbfntx/dbfntx1.c b/harbour/source/rdd/dbfntx/dbfntx1.c index 0990c9e43e..94f67b27ba 100644 --- a/harbour/source/rdd/dbfntx/dbfntx1.c +++ b/harbour/source/rdd/dbfntx/dbfntx1.c @@ -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 );