From: David Mulder Date: Thu, 1 Aug 2024 16:08:41 +0000 (-0600) Subject: Add pam_open_session stub to the himmelblau daemon X-Git-Tag: tdb-1.4.13~909 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3f6254a670d03985c678e948ce122aba899115fb;p=thirdparty%2Fsamba.git Add pam_open_session stub to the himmelblau daemon Signed-off-by: David Mulder Reviewed-by: Alexander Bokovoy --- diff --git a/himmelblaud/src/himmelblaud.rs b/himmelblaud/src/himmelblaud.rs index 624f03eb326..3dca776b998 100644 --- a/himmelblaud/src/himmelblaud.rs +++ b/himmelblaud/src/himmelblaud.rs @@ -223,7 +223,7 @@ pub(crate) async fn handle_client( Request::PamAccountAllowed(account_id) => { resolver.pam_acct_mgmt(&account_id).await? } - _ => todo!(), + Request::PamAccountBeginSession(_account_id) => Response::Success, }; reqs.send(resp).await?; reqs.flush().await?;