From b365458f40a43d0d9e108cabccc2a003345873c9 Mon Sep 17 00:00:00 2001 From: lifubang Date: Wed, 4 Oct 2023 13:24:36 +0800 Subject: [PATCH] fix a typo in cloned_binary.c: re-use -> reuse Signed-off-by: lifubang --- libcontainer/nsenter/cloned_binary.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcontainer/nsenter/cloned_binary.c b/libcontainer/nsenter/cloned_binary.c index 4268ebda9..d1b2d4c54 100644 --- a/libcontainer/nsenter/cloned_binary.c +++ b/libcontainer/nsenter/cloned_binary.c @@ -151,7 +151,7 @@ static int is_self_cloned(void) * Is the binary a fully-sealed memfd? We don't need CLONED_BINARY_ENV for * this, because you cannot write to a sealed memfd no matter what (so * sharing it isn't a bad thing -- and an admin could bind-mount a sealed - * memfd to /usr/bin/runc to allow re-use). + * memfd to /usr/bin/runc to allow reuse). */ ret = fcntl(fd, F_GET_SEALS); if (ret >= 0) {