From 3233c00531392871070f298f2b2565fcf70ebc9c Mon Sep 17 00:00:00 2001 From: h7x4 Date: Tue, 23 Dec 2025 12:14:23 +0900 Subject: [PATCH] client: fix compile-time conditional import --- src/entrypoints/muscl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entrypoints/muscl.rs b/src/entrypoints/muscl.rs index 54b7023..343c558 100644 --- a/src/entrypoints/muscl.rs +++ b/src/entrypoints/muscl.rs @@ -314,7 +314,7 @@ fn handle_dynamic_completion() -> anyhow::Result> { if std::env::var_os("COMPLETE").is_some() { #[cfg(feature = "suid-sgid-mode")] if executing_in_suid_sgid_mode()? { - use crate::core::bootstrap::drop_privs; + use muscl_lib::core::bootstrap::drop_privs; drop_privs()? }