- Related: RHEL-114548 Rebase Samba to the latest 4.23.x release Signed-off-by: Florence Blanc-Renaud <flo@redhat.com>
35 lines
1.1 KiB
Diff
35 lines
1.1 KiB
Diff
From fc40c7cdcfa3e59d5122248f3ed9faa135de22a6 Mon Sep 17 00:00:00 2001
|
|
From: Alexander Bokovoy <abokovoy@redhat.com>
|
|
Date: Thu, 11 Sep 2025 13:58:03 +0300
|
|
Subject: [PATCH] ipasam: define prototypes
|
|
|
|
Signed-off-by: Alexander Bokovoy <abokovoy@redhat.com>
|
|
Reviewed-By: Florence Blanc-Renaud <flo@redhat.com>
|
|
Reviewed-By: Julien Rische <jrische@redhat.com>
|
|
---
|
|
daemons/ipa-sam/ipa_sam.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/daemons/ipa-sam/ipa_sam.c b/daemons/ipa-sam/ipa_sam.c
|
|
index 55a3a03a57f18856140a62d32fde744876c5e635..839a621ef9a185c5c07c4c2c24f627e1ef8ab43a 100644
|
|
--- a/daemons/ipa-sam/ipa_sam.c
|
|
+++ b/daemons/ipa-sam/ipa_sam.c
|
|
@@ -5380,12 +5380,14 @@ static NTSTATUS pdb_init_ipasam(struct pdb_methods **pdb_method,
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
+NTSTATUS samba_module_init(void);
|
|
NTSTATUS samba_module_init(void)
|
|
{
|
|
return smb_register_passdb(PASSDB_INTERFACE_VERSION, "ipasam",
|
|
pdb_init_ipasam);
|
|
}
|
|
|
|
+NTSTATUS samba_init_module(void);
|
|
NTSTATUS samba_init_module(void)
|
|
{
|
|
return smb_register_passdb(PASSDB_INTERFACE_VERSION, "ipasam",
|
|
--
|
|
2.51.0
|
|
|