diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 67ae48fe69..3cb3c89a6a 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2002-12-01 23:12 UTC+0100 Foo Bar */ +2003-12-12 11:45 UTC-0800 Luis Krause Mantilla + * source/rdd/dbcmd.c + ! Fixed dbSelectArea() bug reported by Giovi Verrua + Thanks to Ryszard for the heads-up + 2003-12-10 18:20 UTC-0500 David G. Holm * utils/hbver/hbverfix.c diff --git a/harbour/source/rdd/dbcmd.c b/harbour/source/rdd/dbcmd.c index dcf729b347..bf99ff19ef 100644 --- a/harbour/source/rdd/dbcmd.c +++ b/harbour/source/rdd/dbcmd.c @@ -1821,9 +1821,8 @@ HB_FUNC( DBSELECTAREA ) if( uiAction == E_RETRY ) { - if( ( uiNewArea = hb_rddSelect( szAlias ) ) == 0 ) + if( ( uiNewArea = hb_rddSelect( szAlias ) ) != 0 ) { - uiNewArea = hb_rddSelect( szAlias ); uiAction = E_DEFAULT; } }