diff src/constants.rs @ 176:0730f5f2ee2a

Turn `libpam-sys-consts` back into `libpam-sys-impls`. This moves the constants into `libpam-sys` and makes `libpam-sys-impls` responsible solely for detecting the current PAM implementation.
author Paul Fisher <paul@pfish.zone>
date Wed, 30 Jul 2025 17:53:31 -0400
parents e30775c80b49
children 6c75fb621b55
line wrap: on
line diff
--- a/src/constants.rs	Wed Jul 30 14:57:12 2025 -0400
+++ b/src/constants.rs	Wed Jul 30 17:53:31 2025 -0400
@@ -412,7 +412,6 @@
     #[cfg(not(feature = "openpam-ext"))]
     const BAD_CONST: ErrorCode = ErrorCode::SystemError;
 
-
     pub(crate) fn result_from(ret: i32) -> Result<()> {
         match ret {
             0 => Ok(()),