1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-13 19:03:52 +02:00
openwrt-packages/utils/fuse/patches/300-closefrom.patch
Rosen Penev 6710881cbd fuse: fix compilation with recent glibc
closefrom is implemented now.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2022-01-08 20:38:19 -08:00

21 lines
420 B
Diff

--- a/util/ulockmgr_server.c
+++ b/util/ulockmgr_server.c
@@ -124,7 +124,7 @@ static int receive_message(int sock, voi
return res;
}
-static int closefrom(int minfd)
+static int closefrom2(int minfd)
{
DIR *dir = opendir("/proc/self/fd");
if (dir) {
@@ -384,7 +384,7 @@ int main(int argc, char *argv[])
dup2(nullfd, 1);
}
close(3);
- closefrom(5);
+ closefrom2(5);
while (1) {
char c;
int sock;