From: Roland McGrath Date: Thu, 3 Aug 2006 01:18:36 +0000 (+0000) Subject: 2006-08-02 Thomas Schwinge X-Git-Tag: upstream/2.30~15439 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b4ef652a453052e06620a1588481e975be893d3b;p=external%2Fglibc.git 2006-08-02 Thomas Schwinge * hurd/getdport.c (__detdport): Don't return EBADF; instead set errno to EBADF and return MACH_PORT_NULL. --- diff --git a/hurd/getdport.c b/hurd/getdport.c index eeb5a86..41567d5 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)