summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2006-08-03 01:18:36 +0000
committerRoland McGrath <roland@gnu.org>2006-08-03 01:18:36 +0000
commitb4ef652a453052e06620a1588481e975be893d3b (patch)
tree2dfebc976c31f7778318d907be9bfd0507bd523a /hurd
parenta71f6b1bd0b8008e0866c030dc5ed0dc559fe820 (diff)
2006-08-02 Thomas Schwinge <tschwinge@gnu.org>
* hurd/getdport.c (__detdport): Don't return EBADF; instead set errno to EBADF and return MACH_PORT_NULL.
Diffstat (limited to 'hurd')
-rw-r--r--hurd/getdport.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/hurd/getdport.c b/hurd/getdport.c
index eeb5a8689e..41567d5fe1 100644
--- a/hurd/getdport.c
+++ b/hurd/getdport.c
@@ -35,8 +35,11 @@ __getdport (int fd)
so we don't bother allocating a real table. */
if (_hurd_init_dtable == NULL)
- /* Never had a descriptor table. */
- return EBADF;
+ {
+ /* Never had a descriptor table. */
+ errno = EBADF;
+ return MACH_PORT_NULL;
+ }
if (fd < 0 || (unsigned int) fd > _hurd_init_dtablesize ||
_hurd_init_dtable[fd] == MACH_PORT_NULL)