summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorTomasz Kramkowski <tomasz@kramkow.ski>2023-01-29 17:29:18 +0000
committerTomasz Kramkowski <tomasz@kramkow.ski>2023-01-29 17:29:18 +0000
commit8700f1a4e37b946f7f5c452a6677a3da3e9d11fa (patch)
tree88297dd8ec71e473e48ae6debaf1cbe62ca1311c /src/lib.rs
parent7365f0c5758954ea29b3e34648baca4b9876e624 (diff)
downloadpam_usercg_rust-8700f1a4e37b946f7f5c452a6677a3da3e9d11fa.tar.gz
pam_usercg_rust-8700f1a4e37b946f7f5c452a6677a3da3e9d11fa.tar.xz
pam_usercg_rust-8700f1a4e37b946f7f5c452a6677a3da3e9d11fa.zip
Return PAM_IGNORE from close session
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 3fd0630..569f964 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -70,5 +70,5 @@ pub extern "C" fn pam_sm_close_session(
_argc: c_int,
_argv: *const *const c_char,
) -> c_int {
- pam::SUCCESS
+ pam::IGNORE
}