about summary refs log tree commit diff
path: root/hurd/getdport.c
diff options
context:
space:
mode:
Diffstat (limited to 'hurd/getdport.c')
-rw-r--r--hurd/getdport.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/hurd/getdport.c b/hurd/getdport.c
index 41567d5fe1..eeb5a8689e 100644
--- a/hurd/getdport.c
+++ b/hurd/getdport.c
@@ -35,11 +35,8 @@ __getdport (int fd)
      so we don't bother allocating a real table.  */
 
   if (_hurd_init_dtable == NULL)
-    {
-      /* Never had a descriptor table.  */
-      errno = EBADF;
-      return MACH_PORT_NULL;
-    }
+    /* Never had a descriptor table.  */
+    return EBADF;
 
   if (fd < 0 || (unsigned int) fd > _hurd_init_dtablesize ||
       _hurd_init_dtable[fd] == MACH_PORT_NULL)