summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--contrib/nvi/common/exf.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/contrib/nvi/common/exf.c b/contrib/nvi/common/exf.c
index 2993b0f4a8a5..6f0e160f272c 100644
--- a/contrib/nvi/common/exf.c
+++ b/contrib/nvi/common/exf.c
@@ -1438,11 +1438,15 @@ file_lock(sp, name, fdp, fd, iswrite)
* they are the former. There's no portable way to do this.
*/
errno = 0;
- return (flock(fd, LOCK_EX | LOCK_NB) ? errno == EAGAIN
+ if (!flock(fd, LOCK_EX | LOCK_NB)) {
+ fcntl(fd, F_SETFD, 1);
+ return (LOCK_SUCCESS);
+ }
+ return (errno == EAGAIN
#ifdef EWOULDBLOCK
|| errno == EWOULDBLOCK
#endif
- ? LOCK_UNAVAIL : LOCK_FAILED : LOCK_SUCCESS);
+ ? LOCK_UNAVAIL : LOCK_FAILED);
#endif
#ifdef HAVE_LOCK_FCNTL /* Gag me. We've got fcntl(2). */
{
@@ -1470,8 +1474,11 @@ file_lock(sp, name, fdp, fd, iswrite)
}
errno = 0;
- if (!fcntl(fd, F_SETLK, &arg))
+ if (!fcntl(fd, F_SETLK, &arg)) {
+ fcntl(fd, F_SETFD, 1);
return (LOCK_SUCCESS);
+ }
+
if (didopen) {
sverrno = errno;
(void)close(fd);