Added support for NetWare (libc) built using OpenWatcom.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@377 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-05-08 21:17:55 +00:00
parent 341bbbf16f
commit 4875673228
17 changed files with 168 additions and 643 deletions

View File

@@ -723,7 +723,6 @@ FSTATIC FLMBOOL f_fileMeetsFindCriteria(
Desc: Search for file names matching FindTemplate (UNIX)
****************************************************************************/
#if defined( FLM_UNIX) || defined( FLM_NLM)
FSTATIC int Find1(
char * FindTemplate,
F_IO_FIND_DATA * DirInfo)
@@ -739,7 +738,7 @@ FSTATIC int Find1(
// If supplied template is illegal, return immediately
if( (FindTemplate == (char*)NULL) || !( uiFindLen = f_strlen( FindTemplate)))
if( (FindTemplate == NULL) || (uiFindLen = f_strlen( FindTemplate)) == 0)
{
return( EINVAL);
}