From 091ce854730064ca02ce1e26d985f8c8164d6dbe Mon Sep 17 00:00:00 2001 From: Alexandru Matei Date: Tue, 28 May 2024 11:49:35 +0300 Subject: [PATCH] main: update expand_fdtable comment Updated the comment so it is sync with the code Signed-off-by: Alexandru Matei --- src/main.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index b017a5a49..17794a2ee 100644 --- a/src/main.rs +++ b/src/main.rs @@ -836,9 +836,7 @@ fn expand_fdtable() -> Result<(), FdTableError> { }; // The first 3 handles are stdin, stdout, stderr. We don't want to touch - // any of them. If table_size is <= 3 it means we either didn't manage to set - // the soft limit to 4096 and we use the current soft limit or hard limit <= 3. - // Either way there is nothing we can possibly do in this case. + // any of them. if table_size <= 3 { return Ok(()); }