2006-08-02 Thomas Schwinge <tschwinge@gnu.org>
authorRoland McGrath <roland@gnu.org>
Thu, 3 Aug 2006 01:18:36 +0000 (01:18 +0000)
committerRoland McGrath <roland@gnu.org>
Thu, 3 Aug 2006 01:18:36 +0000 (01:18 +0000)
        * hurd/getdport.c (__detdport): Don't return EBADF; instead set
        errno to EBADF and return MACH_PORT_NULL.

hurd/getdport.c

index eeb5a86..41567d5 100644 (file)
@@ -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)