From d0c7d0fdd6c1f06beebb155183bfc828e313d241 Mon Sep 17 00:00:00 2001 From: thorpej Date: Mon, 9 Oct 1995 23:56:17 +0000 Subject: [PATCH] Add missing F_SETLKW case to svr4_sys_fcntl(), from Niklas Hallqvist . --- sys/compat/svr4/svr4_fcntl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/compat/svr4/svr4_fcntl.c b/sys/compat/svr4/svr4_fcntl.c index fddcd6cb96eb..a2421d32fc7c 100644 --- a/sys/compat/svr4/svr4_fcntl.c +++ b/sys/compat/svr4/svr4_fcntl.c @@ -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;