Changeset 2166


Ignore:
Timestamp:
Jul 3, 2005, 4:57:38 AM (20 years ago)
Author:
bird
Message:

don't use the smalles possible limit for fd validation, stupid.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/src/lib/io/fcntl.c

    • Property cvs2svn:cvs-rev changed from 1.6 to 1.7
    r2165 r2166  
    3131  /** @todo Define a max handles or something */
    3232
    33   if (handle2 < 0 || handle2 >= _POSIX_OPEN_MAX)
     33  if (handle2 < 0 || handle2 >= /*_POSIX_OPEN_MAX */ 10000)
    3434    {
    3535      errno = EINVAL;
Note: See TracChangeset for help on using the changeset viewer.