From 1f687923ce2fddb87ee8d39552afef7649ed4bb5 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. --- src/unix/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/unix/mod.rs b/src/unix/mod.rs index 2c2fc54dd2912..d53a382a01ae4 100644 --- a/src/unix/mod.rs +++ b/src/unix/mod.rs @@ -329,6 +329,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;