2003-12-12 11:45 UTC-0800 Luis Krause Mantilla

This commit is contained in:
Luis Krause
2003-12-12 19:51:04 +00:00
parent 4c45d3af9c
commit 093d867706
2 changed files with 6 additions and 2 deletions

View File

@@ -8,6 +8,11 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2003-12-12 11:45 UTC-0800 Luis Krause Mantilla <lkrausem /*at*/ shaw /*dot*/ ca>
* 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 <dholm@jsd-llc.com>
* utils/hbver/hbverfix.c

View File

@@ -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;
}
}