20000415-19:09 GMT+2 Maurilio Longo <maurilio.longo@libero.it>

This commit is contained in:
Maurilio Longo
2000-04-15 17:10:41 +00:00
parent c2e3f9c685
commit 28e933ee9c
2 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
20000415-19:09 GMT+2 Maurilio Longo <maurilio.longo@libero.it>
* source/rdd/dbfcdx/dbfcdx1.c
! testdbf was failing with missing symbols, fixed to let testdbf compile
20000415-18:37 GMT+2 Maurilio Longo <maurilio.longo@libero.it>
* source/rdd/dbfcdx/dbfcdx1.c

View File

@@ -37,6 +37,8 @@
#include <time.h>
#include <ctype.h>
#include <string.h>
#include <stdio.h>
#include "hbapi.h"
#include "hbapiitm.h"
@@ -1926,7 +1928,7 @@ static void hb_cdxIndexAddTag( LPINDEXINFO pIndex, char * szTagName, char * szKe
pLastTag = NULL;
while( pTag != NULL )
{
if( strcmpi( pTag->TagName, szTagName ) == 0 )
if( stricmp( pTag->TagName, szTagName ) == 0 )
{
pKey->Tag = pTag->TagBlock;
if( hb_cdxTagKeyFind( pIndex->CompoundTag, pKey ) > 0 )
@@ -2076,7 +2078,7 @@ static void hb_cdxSortInsertWord( LPSORTINFO pSort, LONG Tag, char * Value )
SHORT v;
LPSORTDATA wx;
ltoa( Tag, s + 1, 10 );
_ltoa( Tag, s + 1, 10 );
w = strlen( Value );
if( pSort->NodeLimit - pSort->NodeCur < w + strlen( s + 1 ) + 1 )
{