See ChangeLog entry 2000-09-13 16:45 UTC-0400 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2000-09-13 20:48:26 +00:00
parent a4a8f47f11
commit 49ed06b316
4 changed files with 19 additions and 4 deletions

View File

@@ -1,3 +1,17 @@
2000-09-13 16:45 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* include/hbver.h
* Bumped revision to "a" and date to 2000-09-13
for an interim release.
* contrib/rdd_ads/ads1.c
! Added #include <ctype.h> to avoid warning for use of tolower()
in strcmpNoCase().
* source/rtl/filesys.c
! Excluded __RSXNT__ from the DOS-centric lock/unlock #elif block
in hb_fsLock()
2000-09-11 13:45 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* source/rdd/dbf1.c

View File

@@ -44,6 +44,7 @@
#include "hbapilng.h"
#include "hbdate.h"
#include "rddads.h"
#include <ctype.h>
static ERRCODE adsRecCount( ADSAREAP pArea, ULONG * pRecCount );

View File

@@ -38,10 +38,10 @@
#define HB_VER_MAJOR 0 /* Major version number */
#define HB_VER_MINOR 35 /* Minor version number */
#define HB_VER_REVISION "" /* Revision letter */
#define HB_VER_REVISION "a" /* Revision letter */
#define HB_VER_BUILD 35 /* Build number */
#define HB_VER_YEAR 2000 /* Build year */
#define HB_VER_MONTH 8 /* Build month */
#define HB_VER_DAY 17 /* Build day */
#define HB_VER_MONTH 9 /* Build month */
#define HB_VER_DAY 13 /* Build day */
#endif /* HB_VER_H_ */

View File

@@ -997,7 +997,7 @@ BOOL hb_fsLock ( FHANDLE hFileHandle, ULONG ulStart,
s_uiErrorLast = errno;
}
#elif defined(HAVE_POSIX_IO) && !defined(__IBMCPP__)
#elif defined(HAVE_POSIX_IO) && !defined(__IBMCPP__) && !defined(__RSXNT__)
errno = 0;
switch( uiMode )