From ed784c3ccced0e336e140d1bef1c7ed98ac21845 Mon Sep 17 00:00:00 2001 From: Sebastien Marie Date: Thu, 17 Oct 2024 06:40:28 +0000 Subject: [PATCH] unbreak OpenBSD after #3937 fix FNM_PATHNAME and FNM_NOESCAPE values. (backport ) (cherry picked from commit 1f687923ce2fddb87ee8d39552afef7649ed4bb5) --- src/unix/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/unix/mod.rs b/src/unix/mod.rs index 6495a348d9d28..04baabae8bfbf 100644 --- a/src/unix/mod.rs +++ b/src/unix/mod.rs @@ -322,6 +322,7 @@ cfg_if! { target_os = "macos", target_os = "freebsd", target_os = "android", + target_os = "openbsd", ))] { pub const FNM_PATHNAME: c_int = 1 << 1; pub const FNM_NOESCAPE: c_int = 1 << 0;