fix: libc checks for exec server (#243254)

This commit is contained in:
Robo
2025-03-12 04:54:24 +09:00
committed by GitHub
parent 76cf96baa8
commit e9a3e2a03c

View File

@@ -156,7 +156,7 @@ async fn check_glibc_version() -> Result<bool, String> {
if let Some(v) = version {
return if v >= *MIN_LDD_VERSION {
Ok(false)
Ok(true)
} else {
Err(format!(
"find GLIBC >= {} (but found {} instead) for GNU environments",