]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
Add pam_open_session stub to the himmelblau daemon
authorDavid Mulder <dmulder@samba.org>
Thu, 1 Aug 2024 16:08:41 +0000 (10:08 -0600)
committerDavid Mulder <dmulder@samba.org>
Wed, 23 Oct 2024 14:21:33 +0000 (14:21 +0000)
Signed-off-by: David Mulder <dmulder@samba.org>
Reviewed-by: Alexander Bokovoy <ab@samba.org>
himmelblaud/src/himmelblaud.rs

index 624f03eb326783532bbdaa278b0c9ffbbaab372d..3dca776b998d8ee0256d9064e5da69ed27555b85 100644 (file)
@@ -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?;