From 229492c96939d7880414681b0e4091ee8e211154 Mon Sep 17 00:00:00 2001 From: Moritz Both Date: Sun, 1 Nov 2020 23:20:12 +0100 Subject: [PATCH] pkg/fileutil: fix constant for linux locking The constant F_OFD_GETLK is 36, not 37, according to /usr/include/bits/fcntl-linux.h Credits go to joakim-tjernlund who digged deep enough to find this. Fixes #31182 --- pkg/fileutil/lock_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/fileutil/lock_linux.go b/pkg/fileutil/lock_linux.go index 939fea623..004d35fa2 100644 --- a/pkg/fileutil/lock_linux.go +++ b/pkg/fileutil/lock_linux.go @@ -29,7 +29,7 @@ import ( // // constants from /usr/include/bits/fcntl-linux.h const ( - F_OFD_GETLK = 37 + F_OFD_GETLK = 36 F_OFD_SETLK = 37 F_OFD_SETLKW = 38 )