changeset 111:04105e9a7de8

Fix constants in libpam-sys-test.
author Paul Fisher <paul@pfish.zone>
date Sun, 29 Jun 2025 02:19:48 -0400
parents 2346fd501b7a
children 82995b4dccee
files libpam-sys/libpam-sys-test/build.rs
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/libpam-sys/libpam-sys-test/build.rs	Sun Jun 29 02:15:46 2025 -0400
+++ b/libpam-sys/libpam-sys-test/build.rs	Sun Jun 29 02:19:48 2025 -0400
@@ -26,10 +26,10 @@
 fn test_config() -> TestConfig {
     TestConfig {
         headers: vec![
-            "security/pam_types.h",
-            "security/openpam.h",
-            "security/pam_appl.h",
-            "security/pam_constants.h",
+            "security/pam_types.h".into(),
+            "security/openpam.h".into(),
+            "security/pam_appl.h".into(),
+            "security/pam_constants.h".into(),
         ],
         ignore_consts: vec![],
     }