diff --git a/harbour/ChangeLog b/harbour/ChangeLog index a8caa0992c..3f4ea1752a 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,16 @@ +2000-05-09 19:20 GMT-4 David G. Holm + + * contrib/rdd_ads/ads1.c + % Modified ADS_GETFUNCTABLE to use pointers. + + * doc/cvs_ssh.txt + + Added explanation about your SourceForge CVS ID is all lower + case, regardless of the case of your SourceForge login ID. + + * include/hbver.h + + I bumped the revision to "a" and the date to 2000-05-05, because I + released a test binary at http://www.jsd-llc.com/Harbour-Project/ + 20000509-22:27 GMT+2 Maurilio Longo * source/rtl/teditor.prg diff --git a/harbour/contrib/rdd_ads/ads1.c b/harbour/contrib/rdd_ads/ads1.c index 54fffc7651..d31d999e72 100644 --- a/harbour/contrib/rdd_ads/ads1.c +++ b/harbour/contrib/rdd_ads/ads1.c @@ -1339,11 +1339,11 @@ HB_FUNC( ADS_GETFUNCTABLE ) RDDFUNCS * pTable; USHORT * uiCount; - uiCount = ( USHORT * ) hb_parnl( 1 ); + uiCount = ( USHORT * ) hb_itemGetPtr( hb_param( 1, HB_IT_POINTER ) ); * uiCount = RDDFUNCSCOUNT; - pTable = ( RDDFUNCS * ) hb_parnl( 2 ); + pTable = ( RDDFUNCS * ) hb_itemGetPtr( hb_param( 2, HB_IT_POINTER ) ); if( pTable ) - hb_retni( hb_rddInherit( pTable, &adsTable, &adsSuper, NULL ) ); + hb_retni( hb_rddInherit( pTable, &adsTable, &adsSuper, 0 ) ); else hb_retni( FAILURE ); } diff --git a/harbour/doc/cvs_ssh.txt b/harbour/doc/cvs_ssh.txt index 42088c9a11..40d4ce1740 100644 --- a/harbour/doc/cvs_ssh.txt +++ b/harbour/doc/cvs_ssh.txt @@ -6,6 +6,11 @@ This is how I got SSH and CVS to work together! The trick was in how to set up the CVSROOT variable. I did this on NT4, but it should be similar for 95/98 and OS/2. +Note: Your CVS ID is the same as your SourceForge login ID, with one + very important difference: Any and all upper case letters are + converted to lower case. So if your SourceForge login ID is + MyFullName, then your CVS ID will be myfullname. + First I set up SSH, using the following steps: 1) I pointed my web browser to ftp://ftp.cs.hut.fi/pub/ssh/contrib/ diff --git a/harbour/include/hbver.h b/harbour/include/hbver.h index c51a5a2538..40f5d14860 100644 --- a/harbour/include/hbver.h +++ b/harbour/include/hbver.h @@ -38,10 +38,10 @@ #define HB_VER_MAJOR 0 /* Major version number */ #define HB_VER_MINOR 33 /* Minor version number */ -#define HB_VER_REVISION "" /* Revision letter */ +#define HB_VER_REVISION "a" /* Revision letter */ #define HB_VER_BUILD 33 /* Build number */ #define HB_VER_YEAR 2000 /* Build year */ -#define HB_VER_MONTH 04 /* Build month */ -#define HB_VER_DAY 18 /* Build day */ +#define HB_VER_MONTH 05 /* Build month */ +#define HB_VER_DAY 05 /* Build day */ #endif /* HB_VER_H_ */