<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html lang="en" style='--code-editor-font: var(--default-mono-font, "GitLab Mono"), JetBrains Mono, Menlo, DejaVu Sans Mono, Liberation Mono, Consolas, Ubuntu Mono, Courier New, andale mono, lucida console, monospace;'>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>
GitLab
</title>

<style data-premailer="ignore" type="text/css">
a { color: #1068bf; }
</style>


<style>img {
max-width: 100%; height: auto;
}
body {
font-size: .875rem;
}
body {
-webkit-text-shadow: rgba(255,255,255,.01) 0 0 1px;
}
body {
font-family: "GitLab Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Noto Sans",Ubuntu,Cantarell,"Helvetica Neue",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; font-size: inherit;
}
</style>
</head>
<body style='font-size: inherit; -webkit-text-shadow: rgba(255,255,255,.01) 0 0 1px; font-family: "GitLab Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Noto Sans",Ubuntu,Cantarell,"Helvetica Neue",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";'>
<div class="content">

<h3 style="margin-top: 20px; margin-bottom: 10px;">
Michael Tokarev pushed to branch experimental at <a href="https://salsa.debian.org/samba-team/samba">Debian Samba Team / samba</a>
</h3>
<h4 style="margin-top: 10px; margin-bottom: 10px;">
Commits:
</h4>
<ul>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/733833f88822a901dbd65cfbf5492bd78774616f">733833f8</a></strong>
<div>
<span> by Björn Jacke </span> <i> at 2026-01-23T11:48:11+01:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>VERSION: Bump version up to Samba 4.23.6...

and re-enable GIT_SNAPSHOT.

Signed-off-by: Bjoern Jacke <bjacke@samba.org>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/258392a6a1030054721f6755656c75c88f992a4a">258392a6</a></strong>
<div>
<span> by Björn Jacke </span> <i> at 2026-02-06T10:30:46+01:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>VERSION: Bump version up to Samba 4.24.0rc3...

and re-enable GIT_SNAPSHOT.

Signed-off-by: Björn Jacke <bjacke@samba.org>
Signed-off-by: Jule Anger <janger@samba.org>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/10bd9b650d5b1dcc16f9258c0ab6579299089d9c">10bd9b65</a></strong>
<div>
<span> by Pavel Filipenský </span> <i> at 2026-02-07T15:11:13+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>s3:utils: 'net ads kerberos kinit' should use also default ccache name from krb5.conf

This is re-introducing the behavior from samba-4.20 where both these
commands operated on the same ccache (default_ccache_name in
[libdefaults] section of krb5.conf)

 'net ads kerberos kinit -P'
 'klist'

 With samba-4.21 it no longer works, 'net ads kerberos kinit -P'
 fallbacks to 'MEMORY:net' (which is of a very limited use, ticket
 cannot be used by other process) and klist finds no ticket.

 The order is changed from:

    --use-krb5-ccache
    env "KRB5CCNAME"
    "MEMORY:net"

to ("MEMORY:net" is removed):

    --use-krb5-ccache
    env "KRB5CCNAME"
    default_ccache_name

'--use-krb5-ccache=MEMORY:net' can be used to validate the credentials.

Use smb_force_krb5_cc_default_name() instead of krb5_cc_default_name()
because of commit:
1ca6fb5 make sure krb5_cc_default[_name]() is no longer used directly

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15993

Signed-off-by: Pavel Filipenský <pfilipensky@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
(cherry picked from commit 4cc6a13590434f6a3aa1add663728188970d727e)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/0dd9253861f905e071086dce4efaf6782afc4dfd">0dd92538</a></strong>
<div>
<span> by Pavel Filipenský </span> <i> at 2026-02-07T15:11:13+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>manpages: Update NET ADS KERBEROS KINIT manpage

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15993

Signed-off-by: Pavel Filipenský <pfilipensky@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>

Autobuild-User(master): Pavel Filipensky <pfilipensky@samba.org>
Autobuild-Date(master): Thu Feb  5 21:11:13 UTC 2026 on atb-devel-224

(cherry picked from commit 9d083a28fe45afd8f82441c6e24255e4c64c113b)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/0a6726fb83466f750a66aa41b2c304e592522864">0a6726fb</a></strong>
<div>
<span> by Andreas Schneider </span> <i> at 2026-02-07T16:14:24+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>s3:libads: Set NT_STATUS_UNSUCCESSFUL for IP address entry

This is what we do in libads/ldap.c too.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15975

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Pavel Filipenský <pfilipensky@samba.org>
(cherry picked from commit 9e1bcf84d8a8386fb00aedf88e71b28504e449b4)

Autobuild-User(v4-24-test): Björn Jacke <bjacke@samba.org>
Autobuild-Date(v4-24-test): Sat Feb  7 16:14:24 UTC 2026 on atb-devel-224
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/bccbfb8a5c68bec98ff6ee4d56556788794231b7">bccbfb8a</a></strong>
<div>
<span> by Ralph Boehme </span> <i> at 2026-02-23T14:12:09+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>smbd: in contend_dirleases() don't bother checking when not enabled

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15984

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Martin Schwenke <martins@samba.org>

Autobuild-User(master): Ralph Böhme <slow@samba.org>
Autobuild-Date(master): Mon Jan 26 12:09:13 UTC 2026 on atb-devel-224

(cherry picked from commit f11bce483a6403d9ed250c874105248c8e9782e2)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/82670156b9647f019e1f2f58e487f708d0760354">82670156</a></strong>
<div>
<span> by Douglas Bagnall </span> <i> at 2026-02-23T14:12:09+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>build: allow `./configure _foo=x` to work like FOO=x

OpenWRT passes arguments like '_python_sysroot=x' after the './configure',
which it expects to work as if the occurred before the './configure'
-- that is, setting environment variables (let's assume its build
system is necessarily complex due to all the cross-compiles).

This used to work (or at least not cause a failure return code) until
the upgrade to waf 2.1.5 or 2.1.6 in mid-2025, when waf started using
the argparse parser.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15990

Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>

Autobuild-User(master): Douglas Bagnall <dbagnall@samba.org>
Autobuild-Date(master): Wed Feb 18 00:00:30 UTC 2026 on atb-devel-224

(cherry picked from commit bd66dc2418318716083bf40e447f9815b199fc25)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/fd5d2631ce2730cf7c83f109a3b2c60fc3e30cf6">fd5d2631</a></strong>
<div>
<span> by Jennifer Sutton </span> <i> at 2026-02-23T14:12:09+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>CVE-2026-20833: python:tests: Set secure channel type for test credentials

This will ensure that we use the correct salting algorithm for AES when we
authenticate using gensec.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15998

Signed-off-by: Jennifer Sutton <jennifersutton@catalyst.net.nz>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
(cherry picked from commit 5849c0c32810af1a10287afd02b990dde0f351d6)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/f411cb87507f063e815d404b5e1c854fea7a61c8">f411cb87</a></strong>
<div>
<span> by Jennifer Sutton </span> <i> at 2026-02-23T14:12:09+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>CVE-2026-20833: selftest: Avoid renaming ‘testallowed_account’

cli_credentials_get_keytab() uses the sAMAccountName to calculate the salt via
cli_credentials_get_salt_principal(). Changing the sAMAccountName means that
cli_credentials_get_keytab() will generate AES Kerberos keys using the wrong
salt, and gensec authentication will fail.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15998

Signed-off-by: Jennifer Sutton <jennifersutton@catalyst.net.nz>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
(cherry picked from commit dc9f690b3810e8c965a0602c8a25a1e83129702c)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/0ba5ab0e2ed3d1876c0e9629871c41608e55f45c">0ba5ab0e</a></strong>
<div>
<span> by Jennifer Sutton </span> <i> at 2026-02-23T14:12:09+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>CVE-2026-20833: s4:kdc: Make default domain supported enctypes AES by default

If AES keys are available in the domain, assume that service accounts support
AES by default.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15998

Signed-off-by: Jennifer Sutton <jennifersutton@catalyst.net.nz>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
(cherry picked from commit 802649fa35ed37de69f6ca0593a39399575ac6e4)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/7824f15b6ec841ea5066895d8012dbbcba781941">7824f15b</a></strong>
<div>
<span> by Jennifer Sutton </span> <i> at 2026-02-23T14:12:09+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>CVE-2026-20833: WHATSNEW: Document new default for ‘kdc default domain supported enctypes’

Signed-off-by: Jennifer Sutton <jennifersutton@catalyst.net.nz>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>

Autobuild-User(master): Douglas Bagnall <dbagnall@samba.org>
Autobuild-Date(master): Wed Feb 18 01:52:23 UTC 2026 on atb-devel-224

(backported from commit 46a7952880d3b8ad20a718f587435371fa31d327)
[jsutton@samba.org: Fixed conflict in WHATSNEW.txt]
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/3ab52bf550ebe354af9c3aa18a0167e070caa3d4">3ab52bf5</a></strong>
<div>
<span> by Martin Schwenke </span> <i> at 2026-02-23T14:12:09+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>ctdb-tests: Update statd-callout unit test infrastructure

Don't cheat.  Keep some state about what is happening, similar to what
statd_callout and statd_callout_helper are expected to keep.  This
means hinting arguments to check_shared_storage_statd_state() and
check_statd_callout_smnotify() can be dropped.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15939

Signed-off-by: Martin Schwenke <mschwenke@ddn.com>
Reviewed-by: Anoop C S <anoopcs@samba.org>
(cherry picked from commit 85afee0a83dd2f70b90cff4c1e21b865640261fb)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/e1bf06d0d5ebdf927b8a738025c608c8e39452a1">e1bf06d0</a></strong>
<div>
<span> by Peter Schwenke </span> <i> at 2026-02-23T14:12:09+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>ctdb-scripts: Only send notifies for newly taken IPs

We no longer delete shared state (and send notifies) for
IPs previously held by the current node. The NFS lock manager
won't have released locks for these IPs, so won't generate
SM_MON on reclaim attempts.  Therefore, there will be
no add-client to put them back.

We now record newly taken IP addresses in takeip,
and only send notifies for those during
ipreallocated.  The extra notifies were also confusing
statd.

Update existing tests to always simulate taking all of a node's IPs.
This causes no output changes.

Test updates confirm the subtleties of the statd_callout_helper
behaviour change.  These pretend to only take a single IP, so
SM_NOTIFY must not be sent for other IPs.  Shared state should
remain for these other files.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15939

Signed-off-by: Peter Schwenke <pschwenke@ddn.com>
Signed-off-by: Martin Schwenke <mschwenke@ddn.com>
Reviewed-by: Anoop C S <anoopcs@samba.org>
(cherry picked from commit e4914e6a4f1cb77eebf86c5ab3f241c2a9e5bd05)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/386b73b5796bf98f3d352041b1076498c9706299">386b73b5</a></strong>
<div>
<span> by Peter Schwenke </span> <i> at 2026-02-23T14:12:09+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>ctdb-failover: Add sm-notify to statd_callout

sm-notify is required when an NFS client reboots.
rpc-statd on the client will send an sm-notify to
rpc-statd on the NFS sever.

Add a test case.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15938

Signed-off-by: Peter Schwenke <pschwenke@ddn.com>
Reviewed-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Anoop C S <anoopcs@samba.org>

Autobuild-User(master): Martin Schwenke <martins@samba.org>
Autobuild-Date(master): Wed Feb 18 12:29:16 UTC 2026 on atb-devel-224

(cherry picked from commit 7c5ce115f2c11e5a2dd326238f08bc5e7c10641c)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/716a9dd977fbe9b0034ad22484d654ddd889a62a">716a9dd9</a></strong>
<div>
<span> by Noel Power </span> <i> at 2026-02-23T14:12:09+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>selftest: Update tests to use --use-kereros=desired|required no creds

Add tests to call smbclient without passing credentials to
demonstrate failure with --use-kereros=desired

Also add knownfail

Signed-off-by: Noel Power <noel.power@suse.com>
Reviewed-by: Andreas Schneider <asn@samba.org>
(cherry picked from commit a22af9420965083b99b956477d1833000b7f2414)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/b81c865e0bb0b2f72bbd27ed130816442c030b81">b81c865e</a></strong>
<div>
<span> by Noel Power </span> <i> at 2026-02-23T14:12:09+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>auth/credentials: Fix regression with --use-kerberos=desired for smbclient

As part of the gse_krb5 processing the following call chain

gensec_gse_client_start()
  ---> gensec_kerberos_possible()
         ---> cli_credentials_authentication_requested()

gensec_kerberos_possible()  will always fail when
cli_credentials_get_kerberos_state() returns CRED_USE_KERBEROS_DESIRED

It seems since use kerberos == desired is the default that it isn't
necessary to see if credentials were modified to indicated authentication
was requested. gensec_kerberos_possible() should afaics return true
if kerberos is desired OR required (regardless of whether credentials
were requested)

This commit removes the knownfail associated with this bug.

Bug: https://bugzilla.samba.org/show_bug.cgi?id=15789
Signed-off-by: <noel.power@suse.com>
Reviewed-by: Andreas Schneider <asn@samba.org>
(cherry picked from commit 88f42eb222f299189d5f5f8204ae353e63a50970)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/bbc1d2a3d6d21753a3c58acb0b676c75cffa3cb7">bbc1d2a3</a></strong>
<div>
<span> by Noel Power </span> <i> at 2026-02-23T14:12:09+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>s3/libsmb: cli_session_creds_init fails when kerberos is desired

There is a regression with code using cli_session_creds_init when
cli_credentials_get_kerberos_state() returns CRED_USE_KERBEROS_DESIRED

Authentication succeeds when boolean fallback_after_kerberos is false
and fails when true.
There doesn't seem to be a good reason why the value of
fallback_after_kerberos should initialise the krb5 ccache or not.
It would seems that krb5 cache should be setup for creds
for *any* kerberos auth (whether fallback is enabled or not)

Partial patch from <will69@gmx.de> (see bug referenced below)
Bug: https://bugzilla.samba.org/show_bug.cgi?id=15789
Signed-off-by: Noel Power <noel.power@suse.com>
Reviewed-by: Andreas Schneider <asn@samba.org>
(cherry picked from commit 1c48599105736499d18aa1f647bce9e1f8dbdcca)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/005b8a1ff05e535faf82b3cbc20f0f99458e3a65">005b8a1f</a></strong>
<div>
<span> by Noel Power </span> <i> at 2026-02-23T14:12:09+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>s3/libsmb: block anon authentication fallback is use-kerberos = desired

When cli_credentials_get_kerberos_state returns CRED_USE_KERBEROS_REQUIRED
libsmbclient method SMBC_server_internal will still try to fallback to
anon NTLM. This patch prevents that.

Bug: https://bugzilla.samba.org/show_bug.cgi?id=15789
Signed-off-by: Noel Power <noel.power@suse.com>
Reviewed-by: Andreas Schneider <asn@samba.org>

Autobuild-User(master): Noel Power <npower@samba.org>
Autobuild-Date(master): Tue Feb 17 16:06:18 UTC 2026 on atb-devel-224

(cherry picked from commit bc868800276fe09cbcb206ebe4cb4da32af7599f)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/a296e71d3bd6cef20259e397f6bf4559ba0e2826">a296e71d</a></strong>
<div>
<span> by Ralph Boehme </span> <i> at 2026-02-23T15:20:15+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>selftest: mark "smb2.lease.rename_dir_openfile" as flapping

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15978

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Björn Jacke <bjacke@samba.org>

Autobuild-User(master): Ralph Böhme <slow@samba.org>
Autobuild-Date(master): Mon Feb 23 12:37:28 UTC 2026 on atb-devel-224

(cherry picked from commit 437436832fdddfda692fac01452ad7bc4a0b6e3d)

Autobuild-User(v4-24-test): Björn Jacke <bjacke@samba.org>
Autobuild-Date(v4-24-test): Mon Feb 23 15:20:15 UTC 2026 on atb-devel-224
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/9261febb5f517730591dcc4a55941b41d013bc82">9261febb</a></strong>
<div>
<span> by Björn Jacke </span> <i> at 2026-02-23T16:41:56+01:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Add release notes for Samba 4.24.0rc3.

Signed-off-by: Bjoern Jacke <bjacke@samba.org>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/716494fe2f185b8d6b333a8c6024b8f9d13e082b">716494fe</a></strong>
<div>
<span> by Björn Jacke </span> <i> at 2026-02-23T16:56:33+01:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>VERSION: Disable GIT_SNAPSHOT for the 4.24.0.rc4 release.

Signed-off-by: Bjoern Jacke <bjacke@samba.org>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/fa0fe97fa0a4a6015c76042e35a1deafaad51fb2">fa0fe97f</a></strong>
<div>
<span> by Björn Jacke </span> <i> at 2026-02-23T16:58:00+01:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>VERSION: Bump version up to Samba 4.24.0rc4...

and re-enable GIT_SNAPSHOT.

Signed-off-by: Bjoern Jacke <bjacke@samba.org>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/4c548c2669cfc7dc1c33be914b5a9e75da134697">4c548c26</a></strong>
<div>
<span> by Björn Jacke </span> <i> at 2026-02-23T17:01:32+01:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>VERSION: Disable GIT_SNAPSHOT for the 4.24.0.rc3 release.

Signed-off-by: Bjoern Jacke <bjacke@samba.org>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/6c6b4c140ba783bf3787e52e3099ad4d6201f075">6c6b4c14</a></strong>
<div>
<span> by Michael Tokarev </span> <i> at 2026-02-24T10:20:14+03:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>check-for-openat2.patch (#1128849)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/87d8b547979d3a860d1a2eaa63e6a721ba37eea5">87d8b547</a></strong>
<div>
<span> by Martin Schwenke </span> <i> at 2026-02-27T06:36:16+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>docs-xml:smb.conf: Fix "ctdbd socket" documentation

This has been wrong for a very long time.  I only noticed it just
now...  :-(

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15977

Signed-off-by: Martin Schwenke <mschwenke@ddn.com>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>

Autobuild-User(master): Martin Schwenke <martins@samba.org>
Autobuild-Date(master): Thu Jan 22 23:06:20 UTC 2026 on atb-devel-224

(cherry picked from commit 8c458675c10bfda66fb86c5ed67d1d6d0cbbaedf)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/edd38ee8c8ea1a1ceeadff5094015d914e72619c">edd38ee8</a></strong>
<div>
<span> by Noel Power </span> <i> at 2026-02-27T06:36:16+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Add basic cmocka unit tests for pthreadpool

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15958
Pair-Programmed-With: Andreas Schneider <asn@samba.org>
Signed-off-by: Noel Power <noel.power@suse.com>
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/ab1c4f037458ca21be69ec2ccb6ae77ef1ed2d26">ab1c4f03</a></strong>
<div>
<span> by Samuel Cabrero </span> <i> at 2026-02-27T06:36:16+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>s3:rpc_client: Fix memory leak opening local named pipe

If no local server name was passed to rpc_pipe_open_local_np() then
get_myname() was called with NULL talloc context instead of the
current stackframe.

This was causing an increase of memory usage on busy servers with long-living
rpcd_* workers.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15979

Signed-off-by: Samuel Cabrero <scabrero@samba.org>
Reviewed-by: Noel Power <noel.power@suse.com>
Reviewed-by: Volker Lendecke <vl@samba.org>

Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Tue Jan 27 10:13:40 UTC 2026 on atb-devel-224

(cherry picked from commit 24dc455362fb49ef81c99d95880e106a234ce29a)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/2e166ceec713c05c512288db82e150482fff41b5">2e166cee</a></strong>
<div>
<span> by Noel Power </span> <i> at 2026-02-27T06:36:16+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>s3/printing: Fix leaked mem ctx returned from talloc_new

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15979
Signed-off-by: Noel Power <noel.power@suse.com>
Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>
(cherry picked from commit 5ba76344ef807577ea1fd4265d585285eb633971)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/ef3f1e35fc7a34c38a7567b5bbfe85c59b99e579">ef3f1e35</a></strong>
<div>
<span> by Noel Power </span> <i> at 2026-02-27T06:36:16+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>s3/printing: Fix leaking parsed options

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15979
Signed-off-by: Noel Power <noel.power@suse.com>
Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>

Autobuild-User(master): Noel Power <npower@samba.org>
Autobuild-Date(master): Fri Jan 30 11:09:44 UTC 2026 on atb-devel-224

(cherry picked from commit 22021dbfa7a94007a511d05f25e49ab73dacbcf5)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/971fd7306bff42c7fb050e5df669da331142175a">971fd730</a></strong>
<div>
<span> by Ralph Boehme </span> <i> at 2026-02-27T06:36:16+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>smbd: in contend_dirleases() don't bother checking when not enabled

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15984

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Martin Schwenke <martins@samba.org>

Autobuild-User(master): Ralph Böhme <slow@samba.org>
Autobuild-Date(master): Mon Jan 26 12:09:13 UTC 2026 on atb-devel-224

(cherry picked from commit f11bce483a6403d9ed250c874105248c8e9782e2)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/820acbc56fb4f7d50fa1c7b353202e75f8ba63e2">820acbc5</a></strong>
<div>
<span> by Douglas Bagnall </span> <i> at 2026-02-27T06:36:16+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>build: allow `./configure _foo=x` to work like FOO=x

OpenWRT passes arguments like '_python_sysroot=x' after the './configure',
which it expects to work as if the occurred before the './configure'
-- that is, setting environment variables (let's assume its build
system is necessarily complex due to all the cross-compiles).

This used to work (or at least not cause a failure return code) until
the upgrade to waf 2.1.5 or 2.1.6 in mid-2025, when waf started using
the argparse parser.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15990

Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>

Autobuild-User(master): Douglas Bagnall <dbagnall@samba.org>
Autobuild-Date(master): Wed Feb 18 00:00:30 UTC 2026 on atb-devel-224

[back-ported from commit bd66dc2418318716083bf40e447f9815b199fc25,
fixing a conflict in script/autobuild.py]
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/e1a65912fa5997310f776b95c7af73eae96b1db7">e1a65912</a></strong>
<div>
<span> by Günther Deschner </span> <i> at 2026-02-27T06:36:16+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>docs-xml: fix manpage for "net offlinejoin requestodj"

One actually does *NOT* need to provide AD credentials to process a
requestodj operation. This is run as root and populates Samba's
databases based on the ODJ blob. Thanks John Mulligan for pointing this out.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15964

Guenther

Signed-off-by: Guenther Deschner <gd@samba.org>
Reviewed-by: John Mulligan <jmulligan@redhat.com>

Autobuild-User(master): Günther Deschner <gd@samba.org>
Autobuild-Date(master): Thu Dec 11 15:19:13 UTC 2025 on atb-devel-224

(cherry picked from commit a44abbfde048c378fcadea0d597762f7eb10a6a4)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/2a1a4ca22e93fe40788871df3de3b05247755246">2a1a4ca2</a></strong>
<div>
<span> by Martin Schwenke </span> <i> at 2026-02-27T06:36:16+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>ctdb-tests: Update statd-callout unit test infrastructure

Don't cheat.  Keep some state about what is happening, similar to what
statd_callout and statd_callout_helper are expected to keep.  This
means hinting arguments to check_shared_storage_statd_state() and
check_statd_callout_smnotify() can be dropped.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15939

Signed-off-by: Martin Schwenke <mschwenke@ddn.com>
Reviewed-by: Anoop C S <anoopcs@samba.org>
(cherry picked from commit 85afee0a83dd2f70b90cff4c1e21b865640261fb)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/7cf0f098b35e9f0d11fc4b8646409821067d01d5">7cf0f098</a></strong>
<div>
<span> by Peter Schwenke </span> <i> at 2026-02-27T06:36:16+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>ctdb-scripts: Only send notifies for newly taken IPs

We no longer delete shared state (and send notifies) for
IPs previously held by the current node. The NFS lock manager
won't have released locks for these IPs, so won't generate
SM_MON on reclaim attempts.  Therefore, there will be
no add-client to put them back.

We now record newly taken IP addresses in takeip,
and only send notifies for those during
ipreallocated.  The extra notifies were also confusing
statd.

Update existing tests to always simulate taking all of a node's IPs.
This causes no output changes.

Test updates confirm the subtleties of the statd_callout_helper
behaviour change.  These pretend to only take a single IP, so
SM_NOTIFY must not be sent for other IPs.  Shared state should
remain for these other files.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15939

Signed-off-by: Peter Schwenke <pschwenke@ddn.com>
Signed-off-by: Martin Schwenke <mschwenke@ddn.com>
Reviewed-by: Anoop C S <anoopcs@samba.org>
(cherry picked from commit e4914e6a4f1cb77eebf86c5ab3f241c2a9e5bd05)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/f4a7d868d101c44120211de30d52f9e2ecf5aa47">f4a7d868</a></strong>
<div>
<span> by Peter Schwenke </span> <i> at 2026-02-27T06:36:16+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>ctdb-failover: Add sm-notify to statd_callout

sm-notify is required when an NFS client reboots.
rpc-statd on the client will send an sm-notify to
rpc-statd on the NFS sever.

Add a test case.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15938

Signed-off-by: Peter Schwenke <pschwenke@ddn.com>
Reviewed-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Anoop C S <anoopcs@samba.org>

Autobuild-User(master): Martin Schwenke <martins@samba.org>
Autobuild-Date(master): Wed Feb 18 12:29:16 UTC 2026 on atb-devel-224

(cherry picked from commit 7c5ce115f2c11e5a2dd326238f08bc5e7c10641c)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/41c6ba6dc248b2dc6c00e9968c31a4bc6a6572bf">41c6ba6d</a></strong>
<div>
<span> by Noel Power </span> <i> at 2026-02-27T06:36:16+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>selftest: Update tests to use --use-kereros=desired|required no creds

Add tests to call smbclient without passing credentials to
demonstrate failure with --use-kereros=desired

Also add knownfail

Signed-off-by: Noel Power <noel.power@suse.com>
Reviewed-by: Andreas Schneider <asn@samba.org>
(cherry picked from commit a22af9420965083b99b956477d1833000b7f2414)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/0b82fdedd07d0bc0ea48a3bfb34c250faa4b6321">0b82fded</a></strong>
<div>
<span> by Noel Power </span> <i> at 2026-02-27T06:36:16+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>auth/credentials: Fix regression with --use-kerberos=desired for smbclient

As part of the gse_krb5 processing the following call chain

gensec_gse_client_start()
  ---> gensec_kerberos_possible()
         ---> cli_credentials_authentication_requested()

gensec_kerberos_possible()  will always fail when
cli_credentials_get_kerberos_state() returns CRED_USE_KERBEROS_DESIRED

It seems since use kerberos == desired is the default that it isn't
necessary to see if credentials were modified to indicated authentication
was requested. gensec_kerberos_possible() should afaics return true
if kerberos is desired OR required (regardless of whether credentials
were requested)

This commit removes the knownfail associated with this bug.

Bug: https://bugzilla.samba.org/show_bug.cgi?id=15789
Signed-off-by: <noel.power@suse.com>
Reviewed-by: Andreas Schneider <asn@samba.org>
(cherry picked from commit 88f42eb222f299189d5f5f8204ae353e63a50970)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/ad5edb8d0e94afaae0b3cd0c79eed58af1eb3c2e">ad5edb8d</a></strong>
<div>
<span> by Noel Power </span> <i> at 2026-02-27T06:36:16+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>s3/libsmb: cli_session_creds_init fails when kerberos is desired

There is a regression with code using cli_session_creds_init when
cli_credentials_get_kerberos_state() returns CRED_USE_KERBEROS_DESIRED

Authentication succeeds when boolean fallback_after_kerberos is false
and fails when true.
There doesn't seem to be a good reason why the value of
fallback_after_kerberos should initialise the krb5 ccache or not.
It would seems that krb5 cache should be setup for creds
for *any* kerberos auth (whether fallback is enabled or not)

Partial patch from <will69@gmx.de> (see bug referenced below)
Bug: https://bugzilla.samba.org/show_bug.cgi?id=15789
Signed-off-by: Noel Power <noel.power@suse.com>
Reviewed-by: Andreas Schneider <asn@samba.org>
(cherry picked from commit 1c48599105736499d18aa1f647bce9e1f8dbdcca)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/98ba05559b25be0e0a6e15838a489a7fb0b34813">98ba0555</a></strong>
<div>
<span> by Noel Power </span> <i> at 2026-02-27T06:36:16+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>s3/libsmb: block anon authentication fallback is use-kerberos = desired

When cli_credentials_get_kerberos_state returns CRED_USE_KERBEROS_REQUIRED
libsmbclient method SMBC_server_internal will still try to fallback to
anon NTLM. This patch prevents that.

Bug: https://bugzilla.samba.org/show_bug.cgi?id=15789
Signed-off-by: Noel Power <noel.power@suse.com>
Reviewed-by: Andreas Schneider <asn@samba.org>

Autobuild-User(master): Noel Power <npower@samba.org>
Autobuild-Date(master): Tue Feb 17 16:06:18 UTC 2026 on atb-devel-224

(cherry picked from commit bc868800276fe09cbcb206ebe4cb4da32af7599f)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/269c91deb4860e7720186fc5430b3407edc23fdf">269c91de</a></strong>
<div>
<span> by Ralph Boehme </span> <i> at 2026-02-27T07:38:26+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>selftest: mark "smb2.lease.rename_dir_openfile" as flapping

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15978

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Björn Jacke <bjacke@samba.org>

Autobuild-User(master): Ralph Böhme <slow@samba.org>
Autobuild-Date(master): Mon Feb 23 12:37:28 UTC 2026 on atb-devel-224

(cherry picked from commit 437436832fdddfda692fac01452ad7bc4a0b6e3d)

Autobuild-User(v4-23-test): Björn Jacke <bjacke@samba.org>
Autobuild-Date(v4-23-test): Fri Feb 27 07:38:26 UTC 2026 on atb-devel-224
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/8204255c75766361dd775e0a75d8cb7ede7183b0">8204255c</a></strong>
<div>
<span> by Björn Jacke </span> <i> at 2026-02-27T10:13:55+01:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>WHATSNEW: Add release notes for Samba 4.23.6.

Signed-off-by: Bjoern Jacke <bjacke@samba.org>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/5eb5fcf368e69faef9c16b8d64bb15323c658398">5eb5fcf3</a></strong>
<div>
<span> by Björn Jacke </span> <i> at 2026-02-27T10:19:58+01:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>VERSION: Disable GIT_SNAPSHOT for the 4.23.6 release.

Signed-off-by: Bjoern Jacke <bjacke@samba.org>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/67cb5a7439a9291984011bf291fdb26e6d422db0">67cb5a74</a></strong>
<div>
<span> by Michael Tokarev </span> <i> at 2026-02-27T13:10:27+03:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>New upstream version 4.23.6+dfsg</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/a280e05ed6708262e24837f50bbab3d212f2823c">a280e05e</a></strong>
<div>
<span> by Michael Tokarev </span> <i> at 2026-02-27T13:10:44+03:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Update upstream source from tag 'upstream/4.23.6+dfsg'

Update to upstream version '4.23.6+dfsg'
with Debian dir 7ff661e9a20f7d0bd8ab560281fe04a3c70267ae</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/a6e608b712be526d47cc0b06bc1e22a1fd99db35">a6e608b7</a></strong>
<div>
<span> by Michael Tokarev </span> <i> at 2026-02-27T13:11:51+03:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>update changelog; upload version 4.23.6+dfsg-1 to unstable
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/1c5db76f13e823da3d228fd41b3155f2c92f32a6">1c5db76f</a></strong>
<div>
<span> by Michael Tokarev </span> <i> at 2026-03-08T08:57:04+03:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>samba.samba-bgqd.service: ship a unit file
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/89b302503493f80bc71dd94bf1b15d39f1c616b7">89b30250</a></strong>
<div>
<span> by Michael Tokarev </span> <i> at 2026-03-08T13:12:20+03:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>d/rules: install, but not auto-enable, samba-bgqd.service
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/9c1ca609bfe32a594887944dd01c10568d8073b3">9c1ca609</a></strong>
<div>
<span> by Michael Tokarev </span> <i> at 2026-03-08T13:47:46+03:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>d/rules: do not enable nmbd by default
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/b4419afe914f8696613ff0a7264ac665e2046f6c">b4419afe</a></strong>
<div>
<span> by Michael Tokarev </span> <i> at 2026-03-08T13:48:39+03:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>d/rules: drop obsolete comment
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/a4931e3410b530653564796b4532ddfd91e663e2">a4931e34</a></strong>
<div>
<span> by Michael Tokarev </span> <i> at 2026-03-08T14:26:14+03:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>d/control: drop libnss-winbind & libpam-winbind from samba-ad-dc:Recommends (#1130068)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/e174f6365db927c09ecaf613a25b82505180177e">e174f636</a></strong>
<div>
<span> by Michael Tokarev </span> <i> at 2026-03-08T14:33:27+03:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>update changelog; upload version 4.23.6+dfsg-2 to unstable
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/2da23af92576185d046adf0dfa00d89c1a77f945">2da23af9</a></strong>
<div>
<span> by Gary Lockyer </span> <i> at 2026-03-13T12:53:12+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>s4:kdc:db-glue altSecurityIdentities DN and serial reversed

When altSecurityIdentities is set by RSAT / ADUC they store the
Issuer and Subject DN in last to first order i.e.
       CN=Common Name, O=Organization, C=Country
Need to reverse that to first to last order, i.e.
       C=Country, O=Organization, CN=Common name
Which is how they're stored on the X509 certificates.

Also the serial number is stored in reverse order.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=16001

Signed-off-by: Gary Lockyer <gary@catalyst.net.nz>
Reviewed-by: Jennifer Sutton <jennifersutton@catalyst.net.nz>
(cherry picked from commit 580051e5686d9a26d2502eb969f7a80e13519afb)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/9a32efbc53982f1fcbb81621d125b4d10750d6f5">9a32efbc</a></strong>
<div>
<span> by Gary Lockyer </span> <i> at 2026-03-13T12:53:12+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>s4:kdc:db-glue:tests free principal

Call krb5_free_principal to quiet valgrind leak reports

Signed-off-by: Gary Lockyer <gary@catalyst.net.nz>
Reviewed-by: Jennifer Sutton <jennifersutton@catalyst.net.nz>
(cherry picked from commit fb16086ba44ad1943ec6796c8d607ed4c37eb064)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/17ee299e605491ff6a980c05ddce19647c2167f7">17ee299e</a></strong>
<div>
<span> by Gary Lockyer </span> <i> at 2026-03-13T12:53:12+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>test:heimdal:pkinit fixes for SHA1-PUKEY calculation

The SHA1 hash for KB5014754 SHA1-PUKEY is calculate over the entire
certificate not just the public key.

BUG https://bugzilla.samba.org/show_bug.cgi?id=16001

Signed-off-by: Gary Lockyer <gary@catalyst.net.nz>
Reviewed-by: Jennifer Sutton <jennifersutton@catalyst.net.nz>
(cherry picked from commit 76bf9214239759169ff4688b035c3f531e0db1bc)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/87f4579c87069bdd89449904098ec8c93cdc5138">87f4579c</a></strong>
<div>
<span> by Gary Lockyer </span> <i> at 2026-03-13T12:53:12+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>third_party:heimdal: import lorikeet-heimdal-202602190236

commits: 4223f36655031fd13ad3b0bedbc937dd9ba40c8d
         1a9371036d4baa7da50e9260e411eefa6cee0811
         53f5f685a474413d009249ecd7750399737dcd39

Action upstream feedback on KB5014754 changes.
pkinit:match_name Implement 3.1.5.2.1.3 Explicit Mapping

Calculate hash for KB5014754 SHA1-PUKEY over entire certificate

BUG: https://bugzilla.samba.org/show_bug.cgi?id=16001

Signed-off-by: Gary Lockyer <gary@catalyst.net.nz>
Reviewed-by: Jennifer Sutton <jennifersutton@catalyst.net.nz>

Autobuild-User(master): Jennifer Sutton <jsutton@samba.org>
Autobuild-Date(master): Mon Feb 23 21:18:57 UTC 2026 on atb-devel-224

(cherry picked from commit 3d4d7f3cb88180b205c67a6ca66373fe1fb6851e)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/9ea92994deb4edd7fadb769bd782231f5304207b">9ea92994</a></strong>
<div>
<span> by Volker Lendecke </span> <i> at 2026-03-13T12:53:12+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>rpc: Don't offer spoolss RPC with "disable spoolss = yes"

Bug: https://bugzilla.samba.org/show_bug.cgi?id=16019
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>

Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Fri Mar 13 09:00:05 UTC 2026 on atb-devel-224

(cherry picked from commit 8497fb05d8d9c082b7ba318844970f0b3227aff9)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/5abe6ef48b8e723ffbdae8209b5a551a7d98281c">5abe6ef4</a></strong>
<div>
<span> by Avan Thakkar </span> <i> at 2026-03-13T12:53:12+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>vfs_aio_ratelimit: introduce burst-aware token bucket model

Refactor the rate limiter to use a continuous token-bucket model with
configurable burst multiplier. This replaces the older time-window and
delay_max logic.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=16000

Signed-off-by: Avan Thakkar <athakkar@redhat.com>
Reviewed-by: Shweta Sodani <ssodani@redhat.com>
Reviewed-by: Shachar Sharon <ssharon@redhat.com>
Reviewed-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Anoop C S <anoopcs@samba.org>
(cherry picked from commit f6a67c361bcb0d9f4a7f451dcfda800775b5be13)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/c025dfa0352a504259077523d833f731692c2a26">c025dfa0</a></strong>
<div>
<span> by Avan Thakkar </span> <i> at 2026-03-13T12:53:12+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>vfs_aio_ratelimit: Add per-share TDB persistence for local rate limiter state

Introduce local TDB storage for saving and restoring ratelimiter state
(iops_tokens, bytes_tokens, last timestamp). Each share now persists
its read/write limiter state under aio_ratelimit.tdb.

Added VERSION pseudo-key for schema versioning

On disconnect, save the latest state and close TDB.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=16000

Signed-off-by: Avan Thakkar <athakkar@redhat.com>
Reviewed-by: Shweta Sodani <ssodani@redhat.com>
Reviewed-by: Shachar Sharon <ssharon@redhat.com>
Reviewed-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Anoop C S <anoopcs@samba.org>
(cherry picked from commit 306612e09c082282f39789c426ea85cc7e2bb6e3)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/50865f5d7e5ef597229aa45c9e378158dbcb031f">50865f5d</a></strong>
<div>
<span> by Avan Thakkar </span> <i> at 2026-03-13T12:53:12+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>vfs_aio_ratelimit: support human-readable bandwidth limits

Allow read_bw_limit and write_bw_limit to be specified using
size suffixes (K/M/G/T).

BUG: https://bugzilla.samba.org/show_bug.cgi?id=16000

Signed-off-by: Avan Thakkar <athakkar@redhat.com>
Reviewed-by: Shweta Sodani <ssodani@redhat.com>
Reviewed-by: Shachar Sharon <ssharon@redhat.com>
Reviewed-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Anoop C S <anoopcs@samba.org>
(cherry picked from commit d6332b2caf03e4fcbed0a67208251a27601c527d)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/e323eb43897f3eb8d5d3678ba2de90a004ed7b2c">e323eb43</a></strong>
<div>
<span> by Avan Thakkar </span> <i> at 2026-03-13T12:53:12+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>docs-xml/manpages: update doc to add burst_mult parameters

BUG: https://bugzilla.samba.org/show_bug.cgi?id=16000

Signed-off-by: Avan Thakkar <athakkar@redhat.com>
Reviewed-by: Shweta Sodani <ssodani@redhat.com>
Reviewed-by: Shachar Sharon <ssharon@redhat.com>
Reviewed-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Anoop C S <anoopcs@samba.org>
(cherry picked from commit 9b54d8beaefd9b835b971dd0370d3a1f198121d8)
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/417ddbe6c990c27ec024fcdbdadd9ddb9d70315e">417ddbe6</a></strong>
<div>
<span> by Avan Thakkar </span> <i> at 2026-03-13T13:58:34+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>s3:selftest: update aio_ratelimit tests for burst support

- Replace delay_max configuration with burst_mult parameters.
- Add three test cases: basic rate limiting, burst behavior, and recovery

BUG: https://bugzilla.samba.org/show_bug.cgi?id=16000

Signed-off-by: Avan Thakkar <athakkar@redhat.com>
Reviewed-by: Shweta Sodani <ssodani@redhat.com>
Reviewed-by: Shachar Sharon <ssharon@redhat.com>
Reviewed-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Anoop C S <anoopcs@samba.org>

Autobuild-User(master): Günther Deschner <gd@samba.org>
Autobuild-Date(master): Fri Feb 27 11:52:46 UTC 2026 on atb-devel-224

(cherry picked from commit 83f4b51175cdaa20039de7e823bc4c6a15893628)

Autobuild-User(v4-24-test): Björn Jacke <bjacke@samba.org>
Autobuild-Date(v4-24-test): Fri Mar 13 13:58:34 UTC 2026 on atb-devel-224
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/0e3c6806dae67b85bb2204d61e677e3d08677e22">0e3c6806</a></strong>
<div>
<span> by Björn Jacke </span> <i> at 2026-03-18T09:39:14+01:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>WHATSNEW: Add release notes for Samba 4.24.0.

Signed-off-by: Bjoern Jacke <bjacke@samba.org>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/6443db05ff69696fd51a263151736473ba0988f3">6443db05</a></strong>
<div>
<span> by Björn Jacke </span> <i> at 2026-03-18T09:43:23+01:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>VERSION: Disable GIT_SNAPSHOT for the upcoming release.

Signed-off-by: Bjoern Jacke <bjacke@samba.org>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/13391c7e68db2bf1516653b5621807a634c2a57a">13391c7e</a></strong>
<div>
<span> by Björn Jacke </span> <i> at 2026-03-18T09:45:29+01:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>VERSION: Bump version up to Samba 4.24.0...

and re-enable GIT_SNAPSHOT.

Signed-off-by: Bjoern Jacke <bjacke@samba.org>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/d10801b6636be56d9cafeeaf090a5d3a88702652">d10801b6</a></strong>
<div>
<span> by Björn Jacke </span> <i> at 2026-03-18T10:33:14+01:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Revert "VERSION: Bump version up to Samba 4.24.0..."

This reverts commit 13391c7e68db2bf1516653b5621807a634c2a57a.

This was actually wrong and needs to be created again correctly.

Signed-off-by: Bjoern Jacke <bjacke@samba.org>
Signed-off-by: Stefan Metzmacher <metze@samba.org>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/a72387a57fdcd8555dbcfd71b8f0d5857ee226cc">a72387a5</a></strong>
<div>
<span> by Björn Jacke </span> <i> at 2026-03-18T10:35:25+01:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Revert "VERSION: Disable GIT_SNAPSHOT for the upcoming release."

This reverts commit 6443db05ff69696fd51a263151736473ba0988f3.

This was actually wrong and needs to be created again correctly.

Signed-off-by: Bjoern Jacke <bjacke@samba.org>
Signed-off-by: Stefan Metzmacher <metze@samba.org>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/5d0c91297507009e88a8cc5e35a813a203b08f81">5d0c9129</a></strong>
<div>
<span> by Björn Jacke </span> <i> at 2026-03-18T10:36:16+01:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Merge remote-tracking branch 'origin/v4-24-stable' into v4-24-test

The commit 4c548c2669cfc7dc1c33be914b5a9e75da134697 in v4-24-stable:
VERSION: Disable GIT_SNAPSHOT for the 4.24.0.rc3 release.
was adjusted with git commit --amend
after taking 716494fe2f185b8d6b333a8c6024b8f9d13e082b from v4-24-test:
VERSION: Disable GIT_SNAPSHOT for the 4.24.0.rc4 release.

In order to get the history in sync again this
is a merge using 'git merge -s ours origin/v4-24-stable'
it only links the split commit into the history,
while strategy 'ours' means the content is not changed at all.

Signed-off-by: Bjoern Jacke <bjacke@samba.org>
Signed-off-by: Stefan Metzmacher <metze@samba.org>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/86f97e92d182c19435a8b60221a4ca383da77111">86f97e92</a></strong>
<div>
<span> by Björn Jacke </span> <i> at 2026-03-18T10:59:47+01:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>VERSION: Disable GIT_SNAPSHOT for the 4.24.0 release.

Signed-off-by: Bjoern Jacke <bjacke@samba.org>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/acc0b2e0b61f415d1b0b19ddcf1067b27d1f9c27">acc0b2e0</a></strong>
<div>
<span> by Michael Tokarev </span> <i> at 2026-03-18T14:12:09+03:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>d/gbp.conf,d/watch: switch to 4.24 and experimental branches
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/805a5066aa2023639e450d5836228f9aa01694cb">805a5066</a></strong>
<div>
<span> by Michael Tokarev </span> <i> at 2026-03-18T14:16:28+03:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>New upstream version 4.24.0+dfsg</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/6449450a31af8dd773171ad8099bd1545168879c">6449450a</a></strong>
<div>
<span> by Michael Tokarev </span> <i> at 2026-03-18T14:16:44+03:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Update upstream source from tag 'upstream/4.24.0+dfsg'

Update to upstream version '4.24.0+dfsg'
with Debian dir 13fe9e4e5fba461aace6d78b6aab9d556e68f423</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/2718c7b9202ce3baf36bb6b8bef1aef4c3a5b918">2718c7b9</a></strong>
<div>
<span> by Michael Tokarev </span> <i> at 2026-03-18T14:19:10+03:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>use-explicit_bzero-to-zero-memory.diff: update, 4.24 switched to memset_explicit
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/f46f66bd512fcc1b07c2861fb2f7f2f2a810164d">f46f66bd</a></strong>
<div>
<span> by Michael Tokarev </span> <i> at 2026-03-18T14:19:10+03:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>inline-getprogname.diff: refresh
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/72be352f6c019e0b273eebcaa56f2efd661d9f78">72be352f</a></strong>
<div>
<span> by Michael Tokarev </span> <i> at 2026-03-18T14:19:10+03:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>libtalloc, libtdb: bump versions, add new symbols
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/8ac3b11134e5e4cfd1ea2c9461238f3eec532ac1">8ac3b111</a></strong>
<div>
<span> by Michael Tokarev </span> <i> at 2026-03-18T14:19:10+03:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>d/not-installed: add libcmocka-private-samba.so.0
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/da13b82f6d1a23ef4dba251fda00f9b7fdb00a68">da13b82f</a></strong>
<div>
<span> by Michael Tokarev </span> <i> at 2026-03-18T14:19:10+03:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>d/not-installed: remove old entries
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/samba-team/samba/-/commit/527171de61a7c063f550bab17a5ae7217acbb4f9">527171de</a></strong>
<div>
<span> by Michael Tokarev </span> <i> at 2026-03-18T14:47:53+03:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #3a383f; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>update changelog; upload version 4.24.0+dfsg-1 to experimental
</pre>
</li>
</ul>
<h4 style="margin-top: 10px; margin-bottom: 10px;">
254 changed files:
</h4>
<ul>
<li class="file-stats">
<a href="#b33892fbddeffc3368077b4904ad0b3d562a7312">
VERSION
</a>
</li>
<li class="file-stats">
<a href="#3277e12b5a9f9ff632d229e2629d34ad21dd93fc">
WHATSNEW.txt
</a>
</li>
<li class="file-stats">
<a href="#ad462ff026e43477e18e9b8f1bb1a8ba607251c9">
auth/gensec/gensec_util.c
</a>
</li>
<li class="file-stats">
<a href="#7581ba244b117e3c85a6b9bfb0dbad8213d40c4b">
buildtools/wafsamba/samba_utils.py
</a>
</li>
<li class="file-stats">
<a href="#70f3a9a6bc95bdfae1d73bd88db3f6fbd979789d">
ctdb/config/events/legacy/60.nfs.script
</a>
</li>
<li class="file-stats">
<a href="#fd1c03fbbcea5bbe15cc56b40c2a6be56f909aa8">
ctdb/failover/statd_callout.c
</a>
</li>
<li class="file-stats">
<a href="#2a83c4855e8f5bf171c758e340c8e045b94bd52c">
ctdb/tests/UNIT/eventscripts/scripts/statd-callout.sh
</a>
</li>
<li class="file-stats">
<a href="#e4ce736e876ad5e107952c2ab5df1bab89252630">
ctdb/tests/UNIT/eventscripts/statd-callout.001.sh
</a>
</li>
<li class="file-stats">
<a href="#8b0d5c7a60741c579ac5ef81af2f90c6191fd5ea">
ctdb/tests/UNIT/eventscripts/statd-callout.002.sh
</a>
</li>
<li class="file-stats">
<a href="#161a46b36a5eccd56cc4f4527a915a03547bfbdb">
ctdb/tests/UNIT/eventscripts/statd-callout.004.sh
</a>
</li>
<li class="file-stats">
<a href="#b7acf488338b6c37e0e7a61c8bd0ede081fe046f">
ctdb/tests/UNIT/eventscripts/statd-callout.005.sh
</a>
</li>
<li class="file-stats">
<a href="#438b932afb688cdc18358a90399fe7f13bd96a3f">
ctdb/tests/UNIT/eventscripts/statd-callout.006.sh
</a>
</li>
<li class="file-stats">
<a href="#39b28dec8c607bc2870690c4baf6faaf7ba58f92">
<span class="new-file">
+
ctdb/tests/UNIT/eventscripts/statd-callout.008.sh
</span>
</a>
</li>
<li class="file-stats">
<a href="#dd8d020125bc96c2c6db404cc4852bfd9f0384f0">
<span class="new-file">
+
ctdb/tests/UNIT/eventscripts/statd-callout.050.sh
</span>
</a>
</li>
<li class="file-stats">
<a href="#a6ea3bac6ef92acb4df670eb241f53273e2521a3">
<span class="new-file">
+
ctdb/tests/UNIT/eventscripts/statd-callout.108.sh
</span>
</a>
</li>
<li class="file-stats">
<a href="#ffa5fc83a63d3fc96215d3339199721c98932371">
<span class="new-file">
+
ctdb/tests/UNIT/eventscripts/statd-callout.150.sh
</span>
</a>
</li>
<li class="file-stats">
<a href="#fa23dedd9943ac1135e724df54624fec8ac22224">
<span class="new-file">
+
ctdb/tests/UNIT/eventscripts/statd-callout.208.sh
</span>
</a>
</li>
<li class="file-stats">
<a href="#c7a5e6c9427276b824aa7a6dae72fc6cdf85dd84">
<span class="new-file">
+
ctdb/tests/UNIT/eventscripts/statd-callout.250.sh
</span>
</a>
</li>
<li class="file-stats">
<a href="#5b92646dad31299614fe9d62dea1edf01d8bfe68">
ctdb/tools/statd_callout_helper
</a>
</li>
<li class="file-stats">
<a href="#b92c9d7f6a1fe2f439cb4bef6011394658166981">
<span class="new-file">
+
debian/.gitignore
</span>
</a>
</li>
<li class="file-stats">
<a href="#f168b81935360ddcf2dd0f2d4b98b8603829060f">
<span class="new-file">
+
debian/README.Debian
</span>
</a>
</li>
<li class="file-stats">
<a href="#cf9802e192b48f765b1b5c8268d550d89c933053">
<span class="new-file">
+
debian/README.source
</span>
</a>
</li>
<li class="file-stats">
<a href="#247215bc802305533f7f1f93ec3d07f10d908a3c">
<span class="new-file">
+
debian/README.source.md
</span>
</a>
</li>
<li class="file-stats">
<a href="#d9d67e646e83973f5e1d6cd63fe8c9dffb33ebba">
<span class="new-file">
+
debian/TODO
</span>
</a>
</li>
<li class="file-stats">
<a href="#9c96da0e9f91d7d8937b69b524702c106258f0d1">
<span class="new-file">
+
debian/changelog
</span>
</a>
</li>
<li class="file-stats">
<a href="#f5f51601866c86e59a004bd93fa415f5675be8c5">
<span class="new-file">
+
debian/clean
</span>
</a>
</li>
<li class="file-stats">
<a href="#58ef006ab62b83b4bec5d81fe5b32c3b4c2d1cc2">
<span class="new-file">
+
debian/control
</span>
</a>
</li>
<li class="file-stats">
<a href="#adb7f75f79e3bb85eb62912a2904c5d24af878fb">
<span class="new-file">
+
debian/copyright
</span>
</a>
</li>
<li class="file-stats">
<a href="#34001c0a0e19fcc32c3886fe78ba79a5aefc89ae">
<span class="new-file">
+
debian/ctdb.NEWS
</span>
</a>
</li>
<li class="file-stats">
<a href="#dc21080ce59b822ecb336295a2ea3637eaf82d66">
<span class="new-file">
+
debian/ctdb.README.hurd
</span>
</a>
</li>
<li class="file-stats">
<a href="#927ca03811d2cf9d83563a20102bca91e3baba68">
<span class="new-file">
+
debian/ctdb.README.kfreebsd
</span>
</a>
</li>
<li class="file-stats">
<a href="#7a7f9a6a5e574c9158c2766919fe4d95b28a36da">
<span class="new-file">
+
debian/ctdb.dirs
</span>
</a>
</li>
<li class="file-stats">
<a href="#e7e558f3b6dd70863d755b9229870007be925b8f">
<span class="new-file">
+
debian/ctdb.docs
</span>
</a>
</li>
<li class="file-stats">
<a href="#2059171ee4959a3546a03a2424fe4648592e679f">
<span class="new-file">
+
debian/ctdb.example/nfs-kernel-server/98-nfs-static-ports.conf
</span>
</a>
</li>
<li class="file-stats">
<a href="#c7c27c8236aa52d53cf85eb672f913dddfe0721b">
<span class="new-file">
+
debian/ctdb.example/nfs-kernel-server/enable-nfs.sh
</span>
</a>
</li>
<li class="file-stats">
<a href="#966fc75f84f1ed70c59318d7279daf2290077c57">
<span class="new-file">
+
debian/ctdb.example/nfs-kernel-server/nfs.conf
</span>
</a>
</li>
<li class="file-stats">
<a href="#39064e43e920665f51e7939193b009594843e2a9">
<span class="new-file">
+
debian/ctdb.example/nfs-kernel-server/quota
</span>
</a>
</li>
<li class="file-stats">
<a href="#5fec26293f2752056105f22e9070494e0e5b6a1a">
<span class="new-file">
+
debian/ctdb.example/nfs-kernel-server/services
</span>
</a>
</li>
<li class="file-stats">
<a href="#00612e7ca2dcff2ff5ae86a7c9de44da1d59851f">
<span class="new-file">
+
debian/ctdb.examples
</span>
</a>
</li>
<li class="file-stats">
<a href="#e95bd6eb099b4fd46489999e29276e58951d665f">
<span class="new-file">
+
debian/ctdb.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#de55fd13359d72e59b2b2a1634c886070a26ea57">
<span class="new-file">
+
debian/ctdb.logrotate
</span>
</a>
</li>
<li class="file-stats">
<a href="#b2ca63ecb2939229bf6434283be746347eebf58a">
<span class="new-file">
+
debian/ctdb.postinst
</span>
</a>
</li>
<li class="file-stats">
<a href="#e3e7c5e252efdb1a243b369652b7ec423ae25618">
<span class="new-file">
+
debian/ctdb.postrm
</span>
</a>
</li>
<li class="file-stats">
<a href="#2fb338cdd3a0d50297a7ae934c04233a8e9075f9">
<span class="new-file">
+
debian/ctdb.service
</span>
</a>
</li>
<li class="file-stats">
<a href="#67df3adc98b97f87d2c73e4a05f22a987c3a5a7b">
<span class="new-file">
+
debian/gbp.conf
</span>
</a>
</li>
<li class="file-stats">
<a href="#32706304c640eb0b2b371f89509dae6dd5ed5018">
<span class="new-file">
+
debian/gdbcommands
</span>
</a>
</li>
<li class="file-stats">
<a href="#dc71c4780d9a375ac279ec914ad6ba14c3904204">
<span class="new-file">
+
debian/genshlibs
</span>
</a>
</li>
<li class="file-stats">
<a href="#e9f85462d83813ff085f4dc2a9a1dafe28dae0ac">
<span class="new-file">
+
debian/gitlabracadabra.yml
</span>
</a>
</li>
<li class="file-stats">
<a href="#af2dd7f759026b793e92654ee8bd9743d2349283">
<span class="new-file">
+
debian/header-remove-_PUBLIC_-define.patch
</span>
</a>
</li>
<li class="file-stats">
<a href="#f01630efeedd17d554bcf1decd77067328ef729c">
<span class="new-file">
+
debian/is-configured
</span>
</a>
</li>
<li class="file-stats">
<a href="#50c91863acc0d73cdf1a79ca2979df4ca9481be4">
<span class="new-file">
+
debian/ldb-tools.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#98936162d40532a882462e9779746c6d54323ce6">
<span class="new-file">
+
debian/libldb-dev.examples
</span>
</a>
</li>
<li class="file-stats">
<a href="#eeb1dbc6988c1d7021803172cfbfaa4d00940311">
<span class="new-file">
+
debian/libldb-dev.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#1d7d7e7cacda4de9bf760359eaa730e247c7534b">
<span class="new-file">
+
debian/libldb2.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#096e5c4159efe8293b874f57ba5d1eeb6fec2936">
<span class="new-file">
+
debian/libldb2.lintian-overrides
</span>
</a>
</li>
<li class="file-stats">
<a href="#b564037ce199b9173b1b23cf3e04e558f4039fee">
<span class="new-file">
+
debian/libldb2.symbols
</span>
</a>
</li>
<li class="file-stats">
<a href="#c13f3d12965dbbe00f4ea2e8a923642092c10582">
<span class="new-file">
+
debian/libnss-winbind.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#453fc5ef02ef97576503b742bc0b15c4aa29ed03">
<span class="new-file">
+
debian/libnss-winbind.postinst
</span>
</a>
</li>
<li class="file-stats">
<a href="#85c1fafecbacbd50dceffe07b6a786003b6e547a">
<span class="new-file">
+
debian/libnss-winbind.postrm
</span>
</a>
</li>
<li class="file-stats">
<a href="#d1b008c694d51dc425284dd45c0246a630d8c902">
<span class="new-file">
+
debian/libpam-winbind.NEWS
</span>
</a>
</li>
<li class="file-stats">
<a href="#02788ed862cb3f22ea55d2cc9b1840c9a25212f1">
<span class="new-file">
+
debian/libpam-winbind.examples
</span>
</a>
</li>
<li class="file-stats">
<a href="#440de0c360b7f131ecd3cbcb8483ef1dd2c3552d">
<span class="new-file">
+
debian/libpam-winbind.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#d984e742435e2b047a71d7039a3b795446f5d2c6">
<span class="new-file">
+
debian/libpam-winbind.lintian-overrides
</span>
</a>
</li>
<li class="file-stats">
<a href="#457354abb33cbe6dfdf7790016879111cb3111c5">
<span class="new-file">
+
debian/libpam-winbind.postinst
</span>
</a>
</li>
<li class="file-stats">
<a href="#0177ddf8c451eb40558821d413d227e342014377">
<span class="new-file">
+
debian/libpam-winbind.prerm
</span>
</a>
</li>
<li class="file-stats">
<a href="#1cb4df628b1c66fa6945465c92d1ce5d296555ee">
<span class="new-file">
+
debian/libsmbclient-dev.examples
</span>
</a>
</li>
<li class="file-stats">
<a href="#423b2e38ac05d39ca5089f29bc18b28d2269aa75">
<span class="new-file">
+
debian/libsmbclient-dev.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#365737591f97d9893e4d6b1add2a9c548ed70535">
<span class="new-file">
+
debian/libsmbclient.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#b762984dcdcd3bf8e9297e8eb53826a2a8d1493f">
<span class="new-file">
+
debian/libsmbclient.symbols
</span>
</a>
</li>
<li class="file-stats">
<a href="#a0647029cc2a5d504b9d4556d977e097e3b5f4dd">
<span class="new-file">
+
debian/libsmbclient0.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#3ce4ce0ca35459d6353558982152d1e33e0fd457">
<span class="new-file">
+
debian/libsmbclient0.symbols
</span>
</a>
</li>
<li class="file-stats">
<a href="#090e4452f7a9fbd7a504a1b142cebf7252c6c570">
<span class="new-file">
+
debian/libtalloc-dev.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#2e706862b18f4dd12e8cf5e6c95527f0a425c802">
<span class="new-file">
+
debian/libtalloc2.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#c184efdbe6b52ced7484831a835cdfa3e05d32b7">
<span class="new-file">
+
debian/libtalloc2.symbols
</span>
</a>
</li>
<li class="file-stats">
<a href="#67272483d923cc39c2029678086847901faa068e">
<span class="new-file">
+
debian/libtdb-dev.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#94ee80db5df4bc1612e82267a1a8854a9e53d672">
<span class="new-file">
+
debian/libtdb1.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#c507252d177790569b0ef6e13b731e29085f3eaf">
<span class="new-file">
+
debian/libtdb1.symbols
</span>
</a>
</li>
<li class="file-stats">
<a href="#e8602fd6435f42f8a2fcb254daf9d4ae467e2415">
<span class="new-file">
+
debian/libtevent-dev.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#a7e6326ec3773c836663509eabd1385b30489991">
<span class="new-file">
+
debian/libtevent0.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#a0a513fac2a22820e3aeda96e90ef3187e2fd28d">
<span class="new-file">
+
debian/libtevent0.symbols
</span>
</a>
</li>
<li class="file-stats">
<a href="#4f160d13f9b221cf6f662c4887d7fa64deacbd45">
<span class="new-file">
+
debian/libtevent0t64.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#1cb44ea3183551a8f9bd561a38c4edf2e6b6843a">
<span class="new-file">
+
debian/libtevent0t64.symbols
</span>
</a>
</li>
<li class="file-stats">
<a href="#1fa6ac67b94f3ca2d9a3eaa2012e663d1b253cae">
<span class="new-file">
+
debian/libwbclient-dev.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#fca3ee7faa912ec43dbb792ff5f0f6bb814c0b66">
<span class="new-file">
+
debian/libwbclient0.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#7b54bcefcb8e4fb12c66d0ec40584c58aef08506">
<span class="new-file">
+
debian/libwbclient0.symbols
</span>
</a>
</li>
<li class="file-stats">
<a href="#0d609707d1e6d9b0958557de904496d2d1b3f8e7">
<span class="new-file">
+
debian/manpages/tdb.3
</span>
</a>
</li>
<li class="file-stats">
<a href="#bd48e6adcca8b5d4c216ba5389f21656e239246a">
<span class="new-file">
+
debian/manpages/tdb_chainlock.3
</span>
</a>
</li>
<li class="file-stats">
<a href="#b4469224ca627856fff32c70713ec5f575cd11eb">
<span class="new-file">
+
debian/manpages/tdb_close.3
</span>
</a>
</li>
<li class="file-stats">
<a href="#e7708039823b10e2d53d79c1eb4354cf1be91910">
<span class="new-file">
+
debian/manpages/tdb_delete.3
</span>
</a>
</li>
<li class="file-stats">
<a href="#a3aa7f37fe01fe99438b55fe27e530abd87cdb8e">
<span class="new-file">
+
debian/manpages/tdb_error.3
</span>
</a>
</li>
<li class="file-stats">
<a href="#fddccb2b1263c1372630abe6860918183ee161f1">
<span class="new-file">
+
debian/manpages/tdb_exists.3
</span>
</a>
</li>
<li class="file-stats">
<a href="#8102b2a5aef5e92b7cd670a3675e620e2280818c">
<span class="new-file">
+
debian/manpages/tdb_fetch.3
</span>
</a>
</li>
<li class="file-stats">
<a href="#d4e3d37caba27e7ce56576e1aaa9833883f5cadc">
<span class="new-file">
+
debian/manpages/tdb_firstkey.3
</span>
</a>
</li>
<li class="file-stats">
<a href="#c0e4fe63d6ed7c22a009f9d7fffba7ab3be2e089">
<span class="new-file">
+
debian/manpages/tdb_open.3
</span>
</a>
</li>
<li class="file-stats">
<a href="#84a1933031510ca6f21a9f6bad83a6301f3fc35e">
<span class="new-file">
+
debian/manpages/tdb_store.3
</span>
</a>
</li>
<li class="file-stats">
<a href="#0013bf69a60a709ebcb1f31e676044b45ebc2244">
<span class="new-file">
+
debian/manpages/tdb_traverse.3
</span>
</a>
</li>
<li class="file-stats">
<a href="#1823cfdb97f631de92d185f9a7ef6c1f58bc9147">
<span class="new-file">
+
debian/not-installed
</span>
</a>
</li>
<li class="file-stats">
<a href="#18a938469f2c7c9b56a0c8b8068ce1b5ec2c11d9">
<span class="new-file">
+
debian/panic-action
</span>
</a>
</li>
<li class="file-stats">
<a href="#cb3747b7da40e3a6e0bf7bb808a78bc4c74204f2">
<span class="new-file">
+
debian/patches/README_nosmbldap-tools.patch
</span>
</a>
</li>
<li class="file-stats">
<a href="#08edcbb2388393c10f94754a183d4bba7632b71a">
<span class="new-file">
+
debian/patches/add-so-version-to-private-libraries
</span>
</a>
</li>
<li class="file-stats">
<a href="#4769234ec3ccdae1fe8d7f5718afb8618247c305">
<span class="new-file">
+
debian/patches/check-for-openat2.patch
</span>
</a>
</li>
<li class="file-stats">
<a href="#82d4d416c04575f30cfce96f914af0a4da2394b4">
<span class="new-file">
+
debian/patches/ctdb-config-enable-syslog-by-default.patch
</span>
</a>
</li>
<li class="file-stats">
<a href="#e25f8383bdb684e7060f2d3f6d1e044bba33f474">
<span class="new-file">
+
debian/patches/ctdb-create-piddir.patch
</span>
</a>
</li>
<li class="file-stats">
<a href="#35bbb49dfff39a1734412d4bb5dbcfa015c7fadd">
<span class="new-file">
+
debian/patches/ctdb-use-run-instead-of-var-run.patch
</span>
</a>
</li>
<li class="file-stats">
<a href="#209fd670e7ab3649ef090b63fed22cc9ff122451">
<span class="new-file">
+
debian/patches/ctdb_etcd_lock-path.patch
</span>
</a>
</li>
<li class="file-stats">
<a href="#8aeca78a71b0c82ef9a6e3a773538847591aab09">
<span class="new-file">
+
debian/patches/disable-setuid-confchecks.patch
</span>
</a>
</li>
<li class="file-stats">
<a href="#1eef9f76b61aca1bd259352e790bc16cb9117cf2">
<span class="new-file">
+
debian/patches/fix-nfs-service-name-to-nfs-kernel-server.patch
</span>
</a>
</li>
<li class="file-stats">
<a href="#c302848b8ff3562265ae330d0772ca1d8b0056de">
<span class="new-file">
+
debian/patches/heimdal-kdc-fix-memset_s-calls-1296.patch
</span>
</a>
</li>
<li class="file-stats">
<a href="#b2e69aea15b632904a652bde0181e91f92f45467">
<span class="new-file">
+
debian/patches/heimdal-rfc3454.txt
</span>
</a>
</li>
<li class="file-stats">
<a href="#95b3302bb3751a217e11fb8d109698ab047d3751">
<span class="new-file">
+
debian/patches/hurd-compat.patch
</span>
</a>
</li>
<li class="file-stats">
<a href="#e22bdb3a6b9b6cebd31ca3f9ddc151383d2ce82b">
<span class="new-file">
+
debian/patches/inline-getprogname.diff
</span>
</a>
</li>
<li class="file-stats">
<a href="#897cc9cadd19c3c09220047cab588835427bf1e7">
<span class="new-file">
+
debian/patches/inline-openat2.diff
</span>
</a>
</li>
<li class="file-stats">
<a href="#23e7b87ede156e618be56cc93a45b92d53a5cfb4">
<span class="new-file">
+
debian/patches/ldb-no-replace.diff
</span>
</a>
</li>
<li class="file-stats">
<a href="#3fe66541230573813ebec98484381089fe926c2d">
<span class="new-file">
+
debian/patches/libmscat-deps.patch
</span>
</a>
</li>
<li class="file-stats">
<a href="#744460569dcf7d7211d0c804c831157d913a3bd1">
<span class="new-file">
+
debian/patches/libsmbclient-ensure-lfs-221618.patch
</span>
</a>
</li>
<li class="file-stats">
<a href="#b7c53cb5a2a6ba6459fb0d8d67365a03e0d7ca33">
<span class="new-file">
+
debian/patches/meaningful-error-if-no-python3-markdown.patch
</span>
</a>
</li>
<li class="file-stats">
<a href="#63eb5627fba93b48d70eeb682eecf8b0400c1f1c">
<span class="new-file">
+
debian/patches/meaningful-error-if-no-samba-ad-provision.patch
</span>
</a>
</li>
<li class="file-stats">
<a href="#beabb3a7c82584ea34e27d526f99985341efcbfc">
<span class="new-file">
+
debian/patches/move-msg.sock-from-var-lib-samba-to-run-samba.patch
</span>
</a>
</li>
<li class="file-stats">
<a href="#705441202a63af9dc815ca9e5518768fdaa32d52">
<span class="new-file">
+
debian/patches/replace-xpg-strerror.patch
</span>
</a>
</li>
<li class="file-stats">
<a href="#bc34014ab4b9a49dd7a27bdd8d352912607c3a96">
<span class="new-file">
+
debian/patches/series
</span>
</a>
</li>
<li class="file-stats">
<a href="#365fcc855fcf718d54db9fae1f6e89d6990ab971">
<span class="new-file">
+
debian/patches/silence-waf-uselib_local.diff
</span>
</a>
</li>
<li class="file-stats">
<a href="#207b99fb30505edecdba702189f89deb05f3c1ff">
<span class="new-file">
+
debian/patches/smbclient-pager.patch
</span>
</a>
</li>
<li class="file-stats">
<a href="#3cdc9da1855e8ea612c00d83841a2997f2ac7bee">
<span class="new-file">
+
debian/patches/talloc-standalone.diff
</span>
</a>
</li>
<li class="file-stats">
<a href="#79320d860b0f5794df3d67d8414fb84f70f3dbc2">
<span class="new-file">
+
debian/patches/tdb-standalone.diff
</span>
</a>
</li>
<li class="file-stats">
<a href="#a7ccbe3400841bfd0d17b88061850c9394ca0f8c">
<span class="new-file">
+
debian/patches/tdb_logging_func.diff
</span>
</a>
</li>
<li class="file-stats">
<a href="#7ea451f58ad56c1a5708b01e6278e25f7019c708">
<span class="new-file">
+
debian/patches/tevent-standalone.diff
</span>
</a>
</li>
<li class="file-stats">
<a href="#5d8d95077b5ede79775204a62f6cc17ac38ba945">
<span class="new-file">
+
debian/patches/use-explicit_bzero-to-zero-memory.diff
</span>
</a>
</li>
<li class="file-stats">
<a href="#a3d4a9596a714fd45457598060f4e598117c3228">
<span class="new-file">
+
debian/python3-ldb.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#fcae9b0126e318a90d74fa55f35f4ffd969a1459">
<span class="new-file">
+
debian/python3-samba.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#fc1db14dd3d7c4739d417211efebaa024abfd39b">
<span class="new-file">
+
debian/python3-samba.lintian-overrides
</span>
</a>
</li>
<li class="file-stats">
<a href="#3433ed637c2f63bac336620bede7fcd2cb859ded">
<span class="new-file">
+
debian/python3-talloc.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#e1a621dfb0db257e3f3eb20693e0fe1fd6a0fa08">
<span class="new-file">
+
debian/python3-talloc.lintian-overrides
</span>
</a>
</li>
<li class="file-stats">
<a href="#feb879606ece3b3fdd569fba32a5408c5335c292">
<span class="new-file">
+
debian/python3-talloc.symbols.in
</span>
</a>
</li>
<li class="file-stats">
<a href="#ba396535ba7f02cf6bfe9a6c972dd4f2fe37e8f6">
<span class="new-file">
+
debian/python3-tdb.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#e844f2f943ca9ceae1aaa49a779d260eaab80323">
<span class="new-file">
+
debian/registry-tools.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#8756c63497c8dc39f7773438edf53b220c773f67">
<span class="new-file">
+
debian/rules
</span>
</a>
</li>
<li class="file-stats">
<a href="#b1dbf22e88351ec0d5d1d1a7f53295504b480e61">
<span class="new-file">
+
debian/salsa-ci.yml
</span>
</a>
</li>
<li class="file-stats">
<a href="#0daed05a1ec077d0a701e64347cc3fdaec45c8fe">
<span class="new-file">
+
debian/samba-ad-dc.init
</span>
</a>
</li>
<li class="file-stats">
<a href="#25e0e0f0fbbfc6e497bc32de23e96e8bb41d2a4e">
<span class="new-file">
+
debian/samba-ad-dc.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#a626748cbf70d1124b1dfd9451e8dfe1dd308684">
<span class="new-file">
+
debian/samba-ad-dc.lintian-overrides
</span>
</a>
</li>
<li class="file-stats">
<a href="#b23a52b1c796ed30ca085bf7eac87ae846f85a4e">
<span class="new-file">
+
debian/samba-ad-dc.postinst
</span>
</a>
</li>
<li class="file-stats">
<a href="#81930177e4c7b3382523cb050708fd1f835f74be">
<span class="new-file">
+
debian/samba-ad-dc.preinst
</span>
</a>
</li>
<li class="file-stats">
<a href="#ab0909502f5f9c34fa454117ef177d3827b7872c">
<span class="new-file">
+
debian/samba-ad-dc.service
</span>
</a>
</li>
<li class="file-stats">
<a href="#b27c4a50f2dd77c86a2887b45f9d5b5133abe8eb">
<span class="new-file">
+
debian/samba-ad-provision.lintian-overrides
</span>
</a>
</li>
<li class="file-stats">
<a href="#8fd31609f375d50c06b6b2aaec4ad9045a9998ac">
<span class="new-file">
+
debian/samba-common-bin.NEWS
</span>
</a>
</li>
<li class="file-stats">
<a href="#26318026f7aef7d81aa730e3ce683aca9cbd24e8">
<span class="new-file">
+
debian/samba-common-bin.dirs
</span>
</a>
</li>
<li class="file-stats">
<a href="#48787bce4d12064f1d91cc6f09d01509d54ccc80">
<span class="new-file">
+
debian/samba-common-bin.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#bc77fba153c5e60b24c51e45d06b3779ed8dbb7a">
<span class="new-file">
+
debian/samba-common-bin.lintian-overrides
</span>
</a>
</li>
<li class="file-stats">
<a href="#94c75bc6d0f0f398eae25a6fa3ac997ae5f1312f">
<span class="new-file">
+
debian/samba-common.NEWS
</span>
</a>
</li>
<li class="file-stats">
<a href="#9501d449ded77ac341c7ff7527166b3b3ddfae76">
<span class="new-file">
+
debian/samba-common.bug-presubj
</span>
</a>
</li>
<li class="file-stats">
<a href="#8cb11017ec1b3d2198a80f0a2c25f7031dc19157">
<span class="new-file">
+
debian/samba-common.bug-script
</span>
</a>
</li>
<li class="file-stats">
<a href="#9518e36f08847240e6b42c1e88271fc9ad548b3f">
<span class="new-file">
+
debian/samba-common.dirs
</span>
</a>
</li>
<li class="file-stats">
<a href="#4f0506db7ba6a467b64cee5f3af725d476957fd8">
<span class="new-file">
+
debian/samba-common.docs
</span>
</a>
</li>
<li class="file-stats">
<a href="#4b570673d1d05a911df9622675f726b6f981ae87">
<span class="new-file">
+
debian/samba-common.examples
</span>
</a>
</li>
<li class="file-stats">
<a href="#f8c708ffa748a9ef1ae357c3a9e397e6311f6088">
<span class="new-file">
+
debian/samba-common.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#896c587933141fc5a1111ca37e17bb6a623d14ba">
<span class="new-file">
+
debian/samba-common.maintscript
</span>
</a>
</li>
<li class="file-stats">
<a href="#9a778c22cc1de27a4ba14934205e6e267714c91c">
<span class="new-file">
+
debian/samba-common.postinst
</span>
</a>
</li>
<li class="file-stats">
<a href="#10f0d1d6288ebc403940077b1276367434623637">
<span class="new-file">
+
debian/samba-common.postrm
</span>
</a>
</li>
<li class="file-stats">
<a href="#577f6ba45cc96b1133ab199c5544ca9a3a704573">
<span class="new-file">
+
debian/samba-dev.examples
</span>
</a>
</li>
<li class="file-stats">
<a href="#0e5d5d5bd6339b8510505107727b9c4800a00231">
<span class="new-file">
+
debian/samba-dev.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#c4af9d2823512038f7dbcff0cc766aebcc701d0b">
<span class="new-file">
+
debian/samba-dev.links
</span>
</a>
</li>
<li class="file-stats">
<a href="#9f9ad4e56c84f5c4b4835c89d6c6c2399dd31033">
<span class="new-file">
+
debian/samba-dsdb-modules.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#71b0f9b4b58a67949cf718b8fd68d6b9b6585f1c">
<span class="new-file">
+
debian/samba-libs.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#4fbbbf858a8b79be10c02f0412cff46c4d24cf0e">
<span class="new-file">
+
debian/samba-libs.links
</span>
</a>
</li>
<li class="file-stats">
<a href="#d70feb6544f31cc3b20bb4de44952c36c1668609">
<span class="new-file">
+
debian/samba-libs.lintian-overrides
</span>
</a>
</li>
<li class="file-stats">
<a href="#b752ba1b8383c7dadb3e8e8adaa7fba37d3aef78">
<span class="new-file">
+
debian/samba-libs.symbols
</span>
</a>
</li>
<li class="file-stats">
<a href="#a65601cad97c94644bddddbf3f6118bd47b43398">
<span class="new-file">
+
debian/samba-log-parser
</span>
</a>
</li>
<li class="file-stats">
<a href="#324c871c64ff5b55d4047c5a390da4d7c2548917">
<span class="new-file">
+
debian/samba-testsuite.examples
</span>
</a>
</li>
<li class="file-stats">
<a href="#d2cd76a592168a081ebe0eb9af60f14a4c82f691">
<span class="new-file">
+
debian/samba-testsuite.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#18a13ec156efb7f8db6f00ab7334186379d068e6">
<span class="new-file">
+
debian/samba-vfs-ceph.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#2ad1584bc77aa42ff4ed353b9101bfefc22a9d8f">
<span class="new-file">
+
debian/samba-vfs-ceph.lintian-overrides
</span>
</a>
</li>
<li class="file-stats">
<a href="#dc769da185b251ffe870aade7251ef1706ed9762">
<span class="new-file">
+
debian/samba-vfs-glusterfs.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#8817b33221ce500727efd833fdaaf49ca3bf5799">
<span class="new-file">
+
debian/samba-vfs-glusterfs.lintian-overrides
</span>
</a>
</li>
<li class="file-stats">
<a href="#66aed43178d6a0115717091e2c29224a8238a120">
<span class="new-file">
+
debian/samba-vfs-modules.NEWS
</span>
</a>
</li>
<li class="file-stats">
<a href="#1d95a2eba3a11a885519dd4bd7f28cc5bc146e45">
<span class="new-file">
+
debian/samba.NEWS
</span>
</a>
</li>
<li class="file-stats">
<a href="#f43a96056c86729c091178ec5e3fd7633d8a4fb6">
<span class="new-file">
+
debian/samba.dirs
</span>
</a>
</li>
<li class="file-stats">
<a href="#cca768d7d5c7308906d34a4049fda955d55b73ff">
<span class="new-file">
+
debian/samba.examples
</span>
</a>
</li>
<li class="file-stats">
<a href="#3c2d56221a9f9a56bdb4dec5152ff7e3b44d22e8">
<span class="new-file">
+
debian/samba.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#c54a4bc7fe68234675889fad59a1e1099edea9db">
<span class="new-file">
+
debian/samba.links
</span>
</a>
</li>
<li class="file-stats">
<a href="#8a69cf97ded197136a223cc20a7668661ba989f9">
<span class="new-file">
+
debian/samba.lintian-overrides
</span>
</a>
</li>
<li class="file-stats">
<a href="#4c6bff598335351016f8ee6a6913e6c4b8271d42">
<span class="new-file">
+
debian/samba.maintscript
</span>
</a>
</li>
<li class="file-stats">
<a href="#15a36965ae94158e0487a92ac74353a7c9d5d665">
<span class="new-file">
+
debian/samba.nmbd.init
</span>
</a>
</li>
<li class="file-stats">
<a href="#c3f3c34e8466543dca3390cb8edef7961dbbd1d0">
<span class="new-file">
+
debian/samba.nmbd.service
</span>
</a>
</li>
<li class="file-stats">
<a href="#83ed12c1ebfc8a3591e5ff22e3109ea46b45c52b">
<span class="new-file">
+
debian/samba.pam
</span>
</a>
</li>
<li class="file-stats">
<a href="#cf84fd1083aba62ad2264f7121973769d822a01b">
<span class="new-file">
+
debian/samba.postinst
</span>
</a>
</li>
<li class="file-stats">
<a href="#ec00c5b16c2875b714c0525c3104a78a9f669f29">
<span class="new-file">
+
debian/samba.postrm
</span>
</a>
</li>
<li class="file-stats">
<a href="#0c6d75e4a54f8085982615b44a3b70a2db625f58">
<span class="new-file">
+
debian/samba.samba-bgqd.service
</span>
</a>
</li>
<li class="file-stats">
<a href="#9773102b57ab39de2b6ad69811a2e2a3212c1a92">
<span class="new-file">
+
debian/samba.smbd.init
</span>
</a>
</li>
<li class="file-stats">
<a href="#eb676bb9731da3db5fc38c63fbffee1c6fa56d7d">
<span class="new-file">
+
debian/samba.smbd.service
</span>
</a>
</li>
<li class="file-stats">
<a href="#193770db7773ef843281729ded9f0cc9ddfc72ae">
<span class="new-file">
+
debian/samba.ufw.profile
</span>
</a>
</li>
<li class="file-stats">
<a href="#15e37f50788b9c6f02204e9837992ae1584c143e">
<span class="new-file">
+
debian/smb.conf
</span>
</a>
</li>
<li class="file-stats">
<a href="#0d802bd9eb5b13a28d338b1aa6e418f59a458986">
<span class="new-file">
+
debian/smb.conf.ubuntu.diff
</span>
</a>
</li>
<li class="file-stats">
<a href="#f626c740073b5953d12974fe71542bbd94a8d271">
<span class="new-file">
+
debian/smbclient.docs
</span>
</a>
</li>
<li class="file-stats">
<a href="#525da73cd462a0009a42a4007017c139d7a704ec">
<span class="new-file">
+
debian/smbclient.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#cdcb8d53065d14e54095c033fef784dd99a500cc">
<span class="new-file">
+
debian/smbclient.links
</span>
</a>
</li>
<li class="file-stats">
<a href="#9f7e4f9310e9f42800395bdef47a676326ea7474">
<span class="new-file">
+
debian/smbclient.lintian-overrides
</span>
</a>
</li>
<li class="file-stats">
<a href="#53399f7f2dd7535c43cdcfa511a9c06044a9c238">
<span class="new-file">
+
debian/source/format
</span>
</a>
</li>
<li class="file-stats">
<a href="#85ccdeeb03055211183e48520592d9a93592b330">
<span class="new-file">
+
debian/source/lintian-overrides
</span>
</a>
</li>
<li class="file-stats">
<a href="#559d66f9635f9c8ec302a046740d372717f5c800">
<span class="new-file">
+
debian/tdb-tools.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#39efca1c3e5a9a240fc47ba3f81ce596525fce80">
<span class="new-file">
+
debian/tdb-tools.postinst
</span>
</a>
</li>
<li class="file-stats">
<a href="#7577c4b1879b00e2eb7b92d1b67212743f8237b2">
<span class="new-file">
+
debian/tdb-tools.prerm
</span>
</a>
</li>
<li class="file-stats">
<a href="#9a9c15b07fe6b11eb9ae9150b9ff64f1f6e39878">
<span class="new-file">
+
debian/tests/cifs-share-access
</span>
</a>
</li>
<li class="file-stats">
<a href="#bd9e291e0ffaa7ca2abff7e1c46e1d7049f85808">
<span class="new-file">
+
debian/tests/cifs-share-access-uring
</span>
</a>
</li>
<li class="file-stats">
<a href="#83223a554d33ba7e1888274ff8ac43adb8147ba0">
<span class="new-file">
+
debian/tests/control
</span>
</a>
</li>
<li class="file-stats">
<a href="#3b43d7d9e55e0d1016473933e223c5c348d0ec0d">
<span class="new-file">
+
debian/tests/python-smoke
</span>
</a>
</li>
<li class="file-stats">
<a href="#d4f5b7cb444f240c27488daf96439429f503f399">
<span class="new-file">
+
debian/tests/reinstall-samba-common-bin
</span>
</a>
</li>
<li class="file-stats">
<a href="#a6eb8419ff6c44dd86192bc0c92ed808f1af798e">
<span class="new-file">
+
debian/tests/smbclient-anonymous-share-list
</span>
</a>
</li>
<li class="file-stats">
<a href="#d00a6ca60e853cfb93938cdfcfae3c45eb04942e">
<span class="new-file">
+
debian/tests/smbclient-authenticated-share-list
</span>
</a>
</li>
<li class="file-stats">
<a href="#e6276e54b3af250ec5cbbc8bf34f3a5bb7fffd26">
<span class="new-file">
+
debian/tests/smbclient-macro-expansion
</span>
</a>
</li>
<li class="file-stats">
<a href="#ba991326f6e6fee90e9b8093fc675527f4c4eb00">
<span class="new-file">
+
debian/tests/smbclient-share-access
</span>
</a>
</li>
<li class="file-stats">
<a href="#050f4435bd163b50d728dc3f0d709fec7bcd0a2e">
<span class="new-file">
+
debian/tests/smbclient-share-access-uring
</span>
</a>
</li>
<li class="file-stats">
<a href="#b92fd226f80ead90aa5385f01ffbcf32412eb055">
<span class="new-file">
+
debian/tests/util
</span>
</a>
</li>
<li class="file-stats">
<a href="#9e4d44adc50901aaeeb07dc5d8ef185ac0342c30">
<span class="new-file">
+
debian/update-apparmor-samba-profile
</span>
</a>
</li>
<li class="file-stats">
<a href="#f5606a935d95a2f20059a7ac1136f47b2edadbf6">
<span class="new-file">
+
debian/upstream/metadata
</span>
</a>
</li>
<li class="file-stats">
<a href="#e51cf6f765f87e9fa07041f04d054fe14e7a054f">
<span class="new-file">
+
debian/upstream/signing-key.asc
</span>
</a>
</li>
<li class="file-stats">
<a href="#68ef9f98c01c7eecd4c605cc26048a06f3304b79">
<span class="new-file">
+
debian/watch
</span>
</a>
</li>
<li class="file-stats">
<a href="#c3cfa69452eb4b306dcef3dcd58d7f9deb85dab0">
<span class="new-file">
+
debian/winbind.NEWS
</span>
</a>
</li>
<li class="file-stats">
<a href="#92b950c46b554d5b85925e84bacb565ddfd420bc">
<span class="new-file">
+
debian/winbind.default
</span>
</a>
</li>
<li class="file-stats">
<a href="#c3defd3970e4b65fc25cac177311fdcc7f2f46cb">
<span class="new-file">
+
debian/winbind.init
</span>
</a>
</li>
<li class="file-stats">
<a href="#8edc3feb586816ea3cf8b1a15aba5c79f30d945b">
<span class="new-file">
+
debian/winbind.install
</span>
</a>
</li>
<li class="file-stats">
<a href="#502534b8b2fb7977348623fa5bb887c7bccc1c80">
<span class="new-file">
+
debian/winbind.links
</span>
</a>
</li>
<li class="file-stats">
<a href="#fda710b18c2b2accce622866025ff61aff557a6f">
<span class="new-file">
+
debian/winbind.lintian-overrides
</span>
</a>
</li>
<li class="file-stats">
<a href="#745fc464b278a7377adfcf096921289c6556c90d">
<span class="new-file">
+
debian/winbind.maintscript
</span>
</a>
</li>
<li class="file-stats">
<a href="#f9ea8fc14e1b53e98a735de998c36fe0a80f733a">
<span class="new-file">
+
debian/winbind.pam-config
</span>
</a>
</li>
<li class="file-stats">
<a href="#9237c05ccb5f44ea47cefa491f175c56d9f6f572">
<span class="new-file">
+
debian/winbind.postinst
</span>
</a>
</li>
<li class="file-stats">
<a href="#91128ad85e44fd2f09d012e2debdfad8a8b76378">
<span class="new-file">
+
debian/winbind.postrm
</span>
</a>
</li>
<li class="file-stats">
<a href="#5c708f164863aa3edefef9d47f686eef6a833ab6">
<span class="new-file">
+
debian/winbind.service
</span>
</a>
</li>
<li class="file-stats">
<a href="#ff24328aaf3ffa605e87eeecbcf2383fcbd513c2">
docs-xml/manpages/net.8.xml
</a>
</li>
<li class="file-stats">
<a href="#75127c22fe77aa48bbf49b087f8dd9037673ad9f">
docs-xml/manpages/vfs_aio_ratelimit.8.xml
</a>
</li>
<li class="file-stats">
<a href="#7adc2679aa20d561fa5cc201cd9ed7b2c889d57f">
docs-xml/smbdotconf/security/kdcdefaultdomainsupportedenctypes.xml
</a>
</li>
<li class="file-stats">
<a href="#7ac6fe2807c22aef7d21b52a3aa0d97cf3adba94">
lib/replace/replace.h
</a>
</li>
<li class="file-stats">
<a href="#9d11560c5be952e1acdd2ecc013fe76198c8c908">
python/samba/tests/blackbox/claims.py
</a>
</li>
<li class="file-stats">
<a href="#e8fc10bdc72b82fc53a2aed5a8e12eaa83c24903">
python/samba/tests/krb5/etype_tests.py
</a>
</li>
<li class="file-stats">
<a href="#1af6262ff5dbc262e3a3f8c82c61451de9096ab6">
python/samba/tests/krb5/kdc_base_test.py
</a>
</li>
<li class="file-stats">
<a href="#5c68bed40d918627926f677436640f82697343bf">
python/samba/tests/krb5/pkinit_certificate_mapping_tests.py
</a>
</li>
<li class="file-stats">
<a href="#981b2120f786cca0922eb45175f62e3b0c280a5a">
script/autobuild.py
</a>
</li>
<li class="file-stats">
<a href="#f6038275e1812b33a3897c88f1742b9ff2a090e2">
<span class="new-file">
+
selftest/flapping.d/smb2.lease
</span>
</a>
</li>
<li class="file-stats">
<a href="#fbc173997a753a4c36fb7430bc7508a1c7110491">
selftest/knownfail_mit_kdc.d/etype
</a>
</li>
<li class="file-stats">
<a href="#527e1033d396107d2be275d0ed231501759e6241">
selftest/target/Samba3.pm
</a>
</li>
<li class="file-stats">
<a href="#11a7c9c031f6cbcab27336fa4462b9dd072c9715">
selftest/target/Samba4.pm
</a>
</li>
<li class="file-stats">
<a href="#6bad6533dceecddb7eb9f5ba5cb0adb59d8b5b76">
source3/libads/kerberos.c
</a>
</li>
<li class="file-stats">
<a href="#45f13bd066779dadd873ffd680e8fd980ae6873a">
source3/libsmb/cliconnect.c
</a>
</li>
<li class="file-stats">
<a href="#c3336e9dcf44c1056b6fda025c6fc01dbe8eb9a4">
source3/libsmb/libsmb_server.c
</a>
</li>
<li class="file-stats">
<a href="#38c97d347a38334799b7ca6f92422230bb6ad8de">
source3/modules/vfs_aio_ratelimit.c
</a>
</li>
<li class="file-stats">
<a href="#e6da3a8454b47cb5120539acf3170dee93a899a1">
source3/rpc_server/rpcd_spoolss.c
</a>
</li>
<li class="file-stats">
<a href="#21052aebcf09acc1e6d6b41cc810ed9f61c41d8e">
source3/script/tests/test_aio_ratelimit.sh
</a>
</li>
<li class="file-stats">
<a href="#1f03091855bf3e865cf948dfd978d1d2f62c3486">
source3/script/tests/test_smbclient_kerberos.sh
</a>
</li>
<li class="file-stats">
<a href="#6b62fc5865599418e3f286cd479188426fb8c405">
source3/smbd/smb2_oplock.c
</a>
</li>
<li class="file-stats">
<a href="#e9cebbb4370d5c613da19c6ac13f158ab390c75a">
source3/utils/net.c
</a>
</li>
<li class="file-stats">
<a href="#7b9661cb936f1852e8b41274fc30b9eb3bc29c4d">
source4/kdc/db-glue.c
</a>
</li>
<li class="file-stats">
<a href="#849ec090552f2d31171c44f9a3b8766d0e7ecf9e">
source4/kdc/tests/db-glue-test.c
</a>
</li>
<li class="file-stats">
<a href="#4e916ff4cfee4a6ba6d778fd6648ee6a933e87a8">
third_party/heimdal/kdc/kerberos5.c
</a>
</li>
<li class="file-stats">
<a href="#9064e018d423d1ddec1ca3d1ae2b197b7c2219a5">
third_party/heimdal/kdc/pkinit.c
</a>
</li>
<li class="file-stats">
<a href="#58a101f09c7da49e553d2532ad7b3a12efbf2230">
third_party/heimdal/lib/hx509/cert.c
</a>
</li>
</ul>
<h5 style="margin-top: 10px; margin-bottom: 10px; font-size: .875rem;">
The diff was not included because it is too large.
</h5>

</div>
<div class="footer" style="margin-top: 10px;">
<p style="font-size: small; color: #626168;">

<br>
<a href="https://salsa.debian.org/samba-team/samba/-/compare/bf8aca8baae42652090cdd6363288d65155450ed...527171de61a7c063f550bab17a5ae7217acbb4f9">View it on GitLab</a>.
<br>
You're receiving this email because of your account on <a target="_blank" rel="noopener noreferrer" href="https://salsa.debian.org">salsa.debian.org</a>. <a href="https://salsa.debian.org/-/profile/notifications" target="_blank" rel="noopener noreferrer" class="mng-notif-link">Manage all notifications</a> · <a href="https://salsa.debian.org/help" target="_blank" rel="noopener noreferrer" class="help-link">Help</a>
<span style="color: transparent; font-size: 0; display: none; overflow: hidden; opacity: 0; width: 0; height: 0; max-width: 0; max-height: 0;">
Notification message regarding https://salsa.debian.org/samba-team/samba/-/compare/bf8aca8baae42652090cdd6363288d65155450ed...527171de61a7c063f550bab17a5ae7217acbb4f9 at 1773834598
</span>



</p>
</div>
</body>
</html>