Add missing F_SETLKW case to svr4_sys_fcntl(), from Niklas Hallqvist

<niklas@appli.se>.
This commit is contained in:
thorpej 1995-10-09 23:56:17 +00:00
parent 1162a1d4ff
commit d0c7d0fdd6
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: svr4_fcntl.c,v 1.12 1995/10/07 06:27:39 mycroft Exp $ */
/* $NetBSD: svr4_fcntl.c,v 1.13 1995/10/09 23:56:17 thorpej Exp $ */
/*
* Copyright (c) 1994 Christos Zoulas
@ -281,6 +281,7 @@ svr4_sys_fcntl(p, v, retval)
case F_GETLK:
case F_SETLK:
case F_SETLKW:
{
struct svr4_flock ifl;
struct flock *flp, fl;