diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-13 06:37:43 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-13 06:37:43 +0000 |
commit | a8c8f36e1ccb5a67d1d35d0dc47b6d56b7a8299a (patch) | |
tree | 7b76fc08492e25a051a203162c66f4fe9858543c /lib/libc/rpc | |
parent | d1417677e29ccd9279757eb63891e3473b53d400 (diff) |
do not limit to FD_SETSIZE here, that is idiotic
Diffstat (limited to 'lib/libc/rpc')
-rw-r--r-- | lib/libc/rpc/rpc_dtablesize.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/lib/libc/rpc/rpc_dtablesize.c b/lib/libc/rpc/rpc_dtablesize.c index 604bca3f953..ee411715f20 100644 --- a/lib/libc/rpc/rpc_dtablesize.c +++ b/lib/libc/rpc/rpc_dtablesize.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rpc_dtablesize.c,v 1.2 1996/07/20 06:12:38 deraadt Exp $ */ +/* $OpenBSD: rpc_dtablesize.c,v 1.3 1996/08/13 06:37:42 deraadt Exp $ */ /* $NetBSD: rpc_dtablesize.c,v 1.3 1995/02/25 03:01:55 cgd Exp $ */ /* @@ -33,7 +33,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)rpc_dtablesize.c 1.2 87/08/11 Copyr 1987 Sun Micro";*/ /*static char *sccsid = "from: @(#)rpc_dtablesize.c 2.1 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$OpenBSD: rpc_dtablesize.c,v 1.2 1996/07/20 06:12:38 deraadt Exp $"; +static char *rcsid = "$OpenBSD: rpc_dtablesize.c,v 1.3 1996/08/13 06:37:42 deraadt Exp $"; #endif #include <sys/types.h> @@ -46,13 +46,7 @@ _rpc_dtablesize() { static int size; - if (size == 0) { + if (size == 0) size = getdtablesize(); -#ifdef FD_SETSIZE - /* prevent select() from breaking */ - if (size > FD_SETSIZE) - size = FD_SETSIZE; -#endif - } return (size); } |