diff options
author | Miles Bader <miles@gnu.org> | 1996-04-25 20:21:20 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-04-25 20:21:20 +0000 |
commit | 8ec2f30995f6329bf6a80a22905a442851580e8c (patch) | |
tree | 2e28341aff8f42cea430f11a13fcc47568fe95ab /sysdeps | |
parent | 7f77e07b004bacb367119c8aa7f260ffa0cb57d7 (diff) | |
download | glibc-8ec2f30995f6329bf6a80a22905a442851580e8c.zip glibc-8ec2f30995f6329bf6a80a22905a442851580e8c.tar.gz glibc-8ec2f30995f6329bf6a80a22905a442851580e8c.tar.bz2 |
(__fcntl): Add missing break after F_SETFL.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/mach/hurd/fcntl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/fcntl.c b/sysdeps/mach/hurd/fcntl.c index 4b7207f..bfe7dc9 100644 --- a/sysdeps/mach/hurd/fcntl.c +++ b/sysdeps/mach/hurd/fcntl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc. +/* Copyright (C) 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -139,6 +139,7 @@ DEFUN(__fcntl, (fd, cmd), int fd AND int cmd DOTS) err = HURD_FD_PORT_USE (d, __io_set_all_openmodes (port, va_arg (ap, int))); result = err ? __hurd_dfail (fd, err) : 0; + break; case F_GETOWN: /* Get owner. */ if (err = HURD_FD_PORT_USE (d, __io_get_owner (port, &result))) |