[Pkg-samba-maint] [Git][samba-team/samba][master] 35 commits: VERSION: Bump version up to Samba 4.24.4...
Michael Tokarev (@mjt)
gitlab at salsa.debian.org
Tue Jun 30 20:44:55 BST 2026
Michael Tokarev pushed to branch master at Debian Samba Team / samba
Commits:
7c8cb85f by Stefan Metzmacher at 2026-05-26T14:46:16+02:00
VERSION: Bump version up to Samba 4.24.4...
and re-enable GIT_SNAPSHOT.
Signed-off-by: Stefan Metzmacher <metze at samba.org>
- - - - -
fdfa95a4 by Volker Lendecke at 2026-06-08T16:27:08+00:00
libsecurity: Fix security_acl_dup()'s talloc hierarchy
With claims and conditions, ACEs are no longer simple blobs, they
themselves are structures with talloc children. This means
talloc_memdup() is no longer sufficient to copy an ACE. Copy the whole
ACL via NDR.
Bug: https://bugzilla.samba.org/show_bug.cgi?id=16095
Signed-off-by: Volker Lendecke <vl at samba.org>
Reviewed-by: Noel Power <noel.power at suse.com>
Autobuild-User(master): Volker Lendecke <vl at samba.org>
Autobuild-Date(master): Mon Jun 8 11:47:54 UTC 2026 on atb-devel-224
(cherry picked from commit c137ec34c4aebf889943677f6426583029eb4cd4)
- - - - -
bf154a3e by Gary Lockyer at 2026-06-08T16:27:08+00:00
lib:util add pointer overflow checks
The wrapping of pointer arithmetic is undefined behaviour. Clang from version
20 onwards will treat checks like:
ptr + offset < ptr
As always evaluating to true.
This commit adds the macros:
offset_outside_range
ptr_overflow
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16092
Signed-off-by: Gary Lockyer <gary at catalyst.net.nz>
Reviewed-by: Stefan Metzmacher <metze at samba.org>
Reviewed-by: Volker Lendecke <vl at samba.org>
(Backported from commit 2e53f7196f45d28689f25a57fa84995eceee4585)
test_json_logging not present in v24
- - - - -
7212717c by Gary Lockyer at 2026-06-08T16:27:09+00:00
s3:libsmb:clilist fix tautological-compare
The wrapping of pointer arithmetic is undefined behaviour. Clang from version 20
onwards will treat an overflow check of the following form:
ptr + offset < ptr
as always evaluating to false.
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16092
Signed-off-by: Gary Lockyer <gary at catalyst.net.nz>
Reviewed-by: Stefan Metzmacher <metze at samba.org>
Reviewed-by: Volker Lendecke <vl at samba.org>
- - - - -
b394b084 by Gary Lockyer at 2026-06-08T16:27:09+00:00
libcli:auth:msrpc_parse fix white space
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16092
Signed-off-by: Gary Lockyer <gary at catalyst.net.nz>
Reviewed-by: Stefan Metzmacher <metze at samba.org>
Reviewed-by: Volker Lendecke <vl at samba.org>
- - - - -
c99e124a by Gary Lockyer at 2026-06-08T16:27:09+00:00
libcli:auth:msrpc_parse fix tautological-compare
The wrapping of pointer arithmetic is undefined behaviour. Clang from version 20
onwards will treat an overflow check of the following form:
ptr + offset < ptr
as always evaluating to false
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16092
Signed-off-by: Gary Lockyer <gary at catalyst.net.nz>
Reviewed-by: Stefan Metzmacher <metze at samba.org>
Reviewed-by: Volker Lendecke <vl at samba.org>
(cherry picked from commit d80c9dac0765a5b114718450ec5a062cd2b6f86f)
- - - - -
48ab866b by Gary Lockyer at 2026-06-08T16:27:09+00:00
s3/torture/test_smb1_dfs fix tautological-compare
The wrapping of pointer arithmetic is undefined behaviour. Clang from version 20
onwards will treat an overflow check of the following form:
ptr + offset < ptr
as always evaluating to false.
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16092
Signed-off-by: Gary Lockyer <gary at catalyst.net.nz>
Reviewed-by: Stefan Metzmacher <metze at samba.org>
Reviewed-by: Volker Lendecke <vl at samba.org>
(cherry picked from commit 769cf0a0ddb5c7af65afa5b764c24a3416025745)
- - - - -
e3c8606b by Gary Lockyer at 2026-06-08T16:27:09+00:00
s3:utils:clirap2 fix tautological-compare
The wrapping of pointer arithmetic is undefined behaviour. Clang from version 20
onwards will treat an overflow check of the following form:
ptr + offset < ptr
as always evaluating to false
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16092
Signed-off-by: Gary Lockyer <gary at catalyst.net.nz>
Reviewed-by: Stefan Metzmacher <metze at samba.org>
Reviewed-by: Volker Lendecke <vl at samba.org>
(cherry picked from commit 3287641bbf3360c8241db090781ebc2d5febbc96)
- - - - -
f8983588 by Gary Lockyer at 2026-06-08T16:27:09+00:00
s3:libsmb:cliquota fix tautological-compare
The wrapping of pointer arithmetic is undefined behaviour. Clang from version 20
onwards will treat an overflow check of the following form:
ptr + offset < ptr
as always evaluating to false
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16092
Signed-off-by: Gary Lockyer <gary at catalyst.net.nz>
Reviewed-by: Stefan Metzmacher <metze at samba.org>
Reviewed-by: Volker Lendecke <vl at samba.org>
(cherry picked from commit b58d7045d5444d70db58d07d7746006ea1b9ecfb)
- - - - -
65a87c2e by Gary Lockyer at 2026-06-08T16:27:09+00:00
build: enable tautological-compare errors
Now that all the warnings have been removed, and as they did in fact reveal
real issues lets make it an error.
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16092
Signed-off-by: Gary Lockyer <gary at catalyst.net.nz>
Reviewed-by: Stefan Metzmacher <metze at samba.org>
Reviewed-by: Volker Lendecke <vl at samba.org>
(cherry picked from commit 3485f58ea1c2a4013b0ab60c1ddee0faa4eb3eea)
- - - - -
b528da25 by Stefan Metzmacher at 2026-06-08T17:53:55+00:00
build: add -Werror=tautological-compare
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16092
Signed-off-by: Stefan Metzmacher <metze at samba.org>
Reviewed-by: Volker Lendecke <vl at samba.org>
(Backported from commit fb188140357a5d8796c47c5fd88c8a25117bda8e)
-Werror=array-bounds and -Werror=stringop-overlow
Autobuild-User(v4-24-test): Björn Jacke <bjacke at samba.org>
Autobuild-Date(v4-24-test): Mon Jun 8 17:53:55 UTC 2026 on atb-devel-224
- - - - -
f8402f11 by Andreas Schneider at 2026-06-25T19:50:15+00:00
s3:tests: Improve debugging for test_wbinfo_lookuprids_cache.sh
Note that if this test fails, it is like something else creating keys.
The last time it was a crashing smbd which left a key in the database
and this test failed as a result.
BUG: https://bugzilla.samba.org/attachment.cgi?bugid=16011
Signed-off-by: Andreas Schneider <asn at samba.org>
Reviewed-by: Guenther Deschner <gd at samba.org>
Autobuild-User(master): Günther Deschner <gd at samba.org>
Autobuild-Date(master): Wed Apr 22 16:35:58 UTC 2026 on atb-devel-224
(cherry picked from commit c24438ca972c98db533400d1afebc02fdc29bba6)
- - - - -
cdc518ee by Volker Lendecke at 2026-06-25T19:50:15+00:00
tests: Fix some wbinfo_lookuprids_cache flakyness
If the key contains spaces, the shell qouting through "testit" does
not work properly. Avoid having to fix that quoting by replacing
spaces with '\20'.
You can force it by setting the
my $samsid = "S-1-5-21-1-32-" . int(rand(4294967295));
in selftest/target/Samba3.pm.
BUG: https://bugzilla.samba.org/attachment.cgi?bugid=16011
Signed-off-by: Volker Lendecke <vl at samba.org>
Reviewed-by: Guenther Deschner <gd at samba.org>
Autobuild-User(master): Günther Deschner <gd at samba.org>
Autobuild-Date(master): Mon Jun 8 14:49:01 UTC 2026 on atb-devel-224
(cherry picked from commit 27f57d26f950c6fbe62f9b8ef8bd5fb503f587e5)
- - - - -
55928ada by Volker Lendecke at 2026-06-25T19:50:16+00:00
tests: Fix samba4.blackbox.net_ads_join flakyness
We have to leave against the same DC that we joined against, the
replication cycle might not have kicked in.
Normally, the server affinity cache takes care of this, but in this
test it's disabled.
Signed-off-by: Volker Lendecke <vl at samba.org>
Reviewed-by: Stefan Metzmacher <metze at samba.org>
(cherry picked from commit f5d858005a064a23321e78f68372eb1f8841fdc3)
- - - - -
0d4c67d0 by Andreas Schneider at 2026-06-25T19:50:16+00:00
s3:torture: Add libsmbclient set_credentials test
This checks if we can parse UPNs or DOMAIN\user provided usernames.
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16149
Signed-off-by: Andreas Schneider <asn at samba.org>
Reviewed-by: Noel Power <npower at samba.org>
(cherry picked from commit c12c825708a05918c5ee28bd127881ec5fb0aa38)
- - - - -
db4b1bf2 by Andreas Schneider at 2026-06-25T20:52:38+00:00
s3:libsmb: Parse the username string correctly
It could be a UPN or domain prefixed username.
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16149
Signed-off-by: Andreas Schneider <asn at samba.org>
Reviewed-by: Noel Power <npower at samba.org>
(cherry picked from commit 40b8d8c221258e8db10426a43ff57caacd5d48b0)
Autobuild-User(v4-24-test): Björn Jacke <bjacke at samba.org>
Autobuild-Date(v4-24-test): Thu Jun 25 20:52:38 UTC 2026 on atb-devel-224
- - - - -
bac191f7 by Stefan Metzmacher at 2026-06-30T15:44:16+00:00
s3:winbindd: only call init_dc_connection_rpc() for NCACN_NP connections
As init_dc_connection_rpc() will return NT_STATUS_TRUSTED_DOMAIN_FAILURE
if domain->conn.cli is NULL and this is the case when we
have domain->conn.ignore_smb_disconnected as true.
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14638
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16067
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16151
Signed-off-by: Stefan Metzmacher <metze at samba.org>
Reviewed-by: Björn Jacke <bjacke at samba.org>
Autobuild-User(master): Stefan Metzmacher <metze at samba.org>
Autobuild-Date(master): Fri Jun 26 16:10:29 UTC 2026 on atb-devel-224
(cherry picked from commit 23d1cab67b1c6f7d3cc4ead0d7a88ae809876001)
- - - - -
893ae8aa by Andreas Schneider at 2026-06-30T15:44:16+00:00
lib:compression: Fix _POSIX_C_SOURCE/_XOPEN_SOURCE redefinition issue
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16006
Signed-off-by: Andreas Schneider <asn at samba.org>
Reviewed-by: Stefan Metzmacher <metze at samba.org>
(cherry picked from commit 39d53421d3b739f0c9911c18ad7c1251e84dd514)
- - - - -
64cf5f4c by Andreas Schneider at 2026-06-30T15:44:16+00:00
lib/replace: add _ALIGNED_(n) as __attribute__((aligned(n)))
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16006
Signed-off-by: Andreas Schneider <asn at samba.org>
Reviewed-by: Stefan Metzmacher <metze at samba.org>
(cherry picked from commit 1af38323e1b3d45093d9aaf64ffa00ae9520ab3b)
- - - - -
941c803e by Stefan Metzmacher at 2026-06-30T15:44:16+00:00
s3:nmbd: fix stringop-overflow warnings
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16006
Signed-off-by: Stefan Metzmacher <metze at samba.org>
Reviewed-by: Andreas Schneider <asn at samba.org>
(cherry picked from commit 4f590a737be03c847885d70a3dadc9836e6e53d4)
- - - - -
5a4cf092 by Andreas Schneider at 2026-06-30T15:44:16+00:00
libcli:auth: fix BURN_DATA_SIZE on array-decayed pointer parameter
_encode_pwd_buffer_from_str() declares `buf` as uint8_t buf[N],
which decays to a pointer. BURN_DATA_SIZE(buf, N) expands to
memset_explicit(&buf, 0, N), taking the address of the pointer
variable (8 bytes) rather than the buffer itself, triggering a
GCC -Wstringop-overflow error.
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16006
Signed-off-by: Andreas Schneider <asn at samba.org>
Reviewed-by: Stefan Metzmacher <metze at samba.org>
(cherry picked from commit 58059f27a64536731ae6f933c39de5f7d1b3f162)
- - - - -
5a6bea14 by Andreas Schneider at 2026-06-30T15:44:16+00:00
charset: make strchr_m/strrchr_m/strstr_m const-correct via C11 _Generic
Since glibc-2.43 and C23, strchr/strrchr/strstr use _Generic macros to
return const char * when given const char * input. This caused build
failures in strchr_m and strrchr_m whose fast-path returns passed the
const char * result through as char *:
lib/util/charset/util_str.c:370: error: return discards 'const'
qualifier from pointer target type [-Werror=discarded-qualifiers]
Rather than wrapping the returns in discard_const_p (which the project
discourages adding more of), fix the API properly: rename the
implementations to strchr_m_const/strrchr_m_const/strstr_m_const
returning const char *, and expose C11 _Generic macros under the
original names. The macros preserve the caller's const qualification:
char * input yields char *, const char * input yields const char *.
This matches C23 strchr semantics and requires no changes at call sites.
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16006
Signed-off-by: Andreas Schneider <asn at samba.org>
Reviewed-by: Stefan Metzmacher <metze at samba.org>
(cherry picked from commit 5765fa4d322315b510ab9b3afa0179590cf570d9)
- - - - -
c7df845a by Stefan Metzmacher at 2026-06-30T15:44:16+00:00
C26: const-qualify variables for read-only strchr/strrchr/strstr results
In C26, strchr/strrchr/strstr return const char * when given
const char * input. Add const to local variables that only
read through the pointer.
Pair-Programmed-With: Andreas Schneider <asn at samba.org>
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16006
Signed-off-by: Andreas Schneider <asn at samba.org>
Signed-off-by: Stefan Metzmacher <metze at samba.org>
(backported from commit cb690b465adef7dc8cfccd4c1b0c1ea826c0a2ff)
[slow at samba.org: small conflict in source3/winbindd/winbindd_pam.c:generate_krb5_ccache()]
- - - - -
a14b159d by Stefan Metzmacher at 2026-06-30T15:44:16+00:00
C26: use strchr_m/strrchr_m/strstr_m for multibyte-safe search
Replace strchr/strrchr/strstr with their multibyte-aware
Samba equivalents where appropriate. These wrappers return
char * regardless of input constness.
Pair-Programmed-With: Andreas Schneider <asn at samba.org>
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16006
Signed-off-by: Andreas Schneider <asn at samba.org>
Signed-off-by: Stefan Metzmacher <metze at samba.org>
(cherry picked from commit b5fd955ad5bf63b537076a9ef898c1954e767aad)
- - - - -
8e0f8a07 by Stefan Metzmacher at 2026-06-30T15:44:16+00:00
C26: add C99 static to array function parameters
Use C99 static array size in function parameters (e.g. uint8_t buf[static 516])
to document minimum array size requirements and enable compiler diagnostics.
Pair-Programmed-With: Andreas Schneider <asn at samba.org>
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16006
Signed-off-by: Andreas Schneider <asn at samba.org>
Signed-off-by: Stefan Metzmacher <metze at samba.org>
(cherry picked from commit 68255504ffc00982a667affb406b8f36aaa85c7c)
- - - - -
ffc8355d by Stefan Metzmacher at 2026-06-30T15:44:16+00:00
C26: refactor to avoid modifying data via const pointer
Refactor code that assigns to a struct member, then calls strchr/strrchr on it
for in-place modification. Use a local mutable variable for modification, then
assign the final result to the struct member.
Pair-Programmed-With: Andreas Schneider <asn at samba.org>
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16006
Signed-off-by: Andreas Schneider <asn at samba.org>
Signed-off-by: Stefan Metzmacher <metze at samba.org>
(cherry picked from commit 536c9e8452148eb60c6ec098a934dc24f4d54faf)
- - - - -
8d565ca7 by Stefan Metzmacher at 2026-06-30T15:44:16+00:00
C26: add explicit casts where const must be stripped for mutation
For cases where code intentionally writes through a pointer returned by
strchr/strrchr/strstr, add explicit discard_const_p casts or adjust variable
types to non-const to make the mutability intent clear.
Pair-Programmed-With: Andreas Schneider <asn at samba.org>
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16006
Signed-off-by: Andreas Schneider <asn at samba.org>
Signed-off-by: Stefan Metzmacher <metze at samba.org>
(cherry picked from commit c94ae0f4b8e61492f949e558a721eb4a55e1f9e5)
[slow at samba.org: dropped change in source4/torture/krb5/kdc-canon-mit.csource4/torture/krb5/kdc-canon-mit.c]
- - - - -
c87e2da4 by Stefan Metzmacher at 2026-06-30T15:44:16+00:00
C26: update function signatures for const-correctness
Update function return types and parameter types to propagate const-correctness
through APIs affected by the C26 strchr/strstr changes.
Pair-Programmed-With: Andreas Schneider <asn at samba.org>
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16006
Signed-off-by: Andreas Schneider <asn at samba.org>
Signed-off-by: Stefan Metzmacher <metze at samba.org>
(cherry picked from commit 284e345586d1188f6d455868fe1af4659fe1b116)
- - - - -
c05f5e30 by Stefan Metzmacher at 2026-06-30T15:44:16+00:00
lib/util: fix test_talloc_keep_secret.c with memset_explicit in glibc
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16006
Signed-off-by: Stefan Metzmacher <metze at samba.org>
Reviewed-by: Martin Schwenke <martin at meltin.net>
(cherry picked from commit 0bfe48199329396b3fa25a057d8095eceeaa65fa)
- - - - -
8b720d73 by Stefan Metzmacher at 2026-06-30T16:50:01+00:00
s4:torture: let test_ndr_push_string() use strncmp() as strings might not be terminated
Otherwise this is not reliable.
BUG: https://bugzilla.samba.org/show_bug.cgi?id=16006
Signed-off-by: Stefan Metzmacher <metze at samba.org>
Reviewed-by: Martin Schwenke <martin at meltin.net>
(cherry picked from commit 29cf4ee46be849ae880a77d77cc9c2116fd970b8)
Autobuild-User(v4-24-test): Björn Jacke <bjacke at samba.org>
Autobuild-Date(v4-24-test): Tue Jun 30 16:50:01 UTC 2026 on atb-devel-224
- - - - -
9b67f135 by Björn Jacke at 2026-06-30T20:58:18+02:00
WHATSNEW: Add release notes for Samba 4.24.4.
Signed-off-by: Bjoern Jacke <bjacke at samba.org>
- - - - -
ae978b24 by Björn Jacke at 2026-06-30T20:58:36+02:00
VERSION: Disable GIT_SNAPSHOT for the 4.24.4 release.
Signed-off-by: Bjoern Jacke <bjacke at samba.org>
- - - - -
f4039a14 by Michael Tokarev at 2026-06-30T22:31:38+03:00
New upstream version 4.24.4+dfsg
- - - - -
33d27533 by Michael Tokarev at 2026-06-30T22:31:59+03:00
Update upstream source from tag 'upstream/4.24.4+dfsg'
Update to upstream version '4.24.4+dfsg'
with Debian dir 06f87aebdaf3dcde45f269d14c5a5e582bb394eb
- - - - -
a33cda56 by Michael Tokarev at 2026-06-30T22:40:01+03:00
update changelog; upload version 4.24.4+dfsg-1 to unstable
- - - - -
132 changed files:
- VERSION
- WHATSNEW.txt
- auth/credentials/credentials.c
- buildtools/wafsamba/samba_autoconf.py
- ctdb/protocol/protocol_util.c
- debian/changelog
- examples/libsmbclient/testacl.c
- lib/addns/dnsquery_srv.c
- lib/cmdline/cmdline.c
- lib/compression/pycompression.c
- lib/ldb/common/ldb_ldif.c
- lib/ldb/common/ldb_modules.c
- lib/printer_driver/printer_driver.c
- lib/replace/replace.h
- lib/tdb/tools/tdbtool.c
- lib/util/base64.c
- lib/util/charset/charset.h
- lib/util/charset/util_str.c
- lib/util/dns_cmp.c
- + lib/util/overflow.h
- lib/util/smb_strtox.c
- + lib/util/tests/test_overflow.c
- lib/util/tests/test_talloc_keep_secret.c
- lib/util/util_net.c
- lib/util/wscript_build
- libcli/auth/msrpc_parse.c
- libcli/auth/netlogon_creds_cli.c
- libcli/auth/smbencrypt.c
- libcli/nbt/nbtname.c
- libcli/nbt/tools/nmblookup.c
- libcli/security/security_descriptor.c
- libcli/security/tests/test_sddl_conditional_ace.c
- librpc/rpc/binding.c
- nsswitch/libwbclient/tests/wbclient.c
- nsswitch/libwbclient/wbc_sid.c
- nsswitch/pam_winbind.c
- nsswitch/wbinfo.c
- source3/auth/auth_generic.c
- source3/auth/auth_util.c
- source3/auth/user_krb5.c
- source3/include/libsmbclient.h
- source3/lib/netapi/examples/common.c
- source3/lib/netapi/tests/common.c
- source3/lib/util.c
- source3/lib/wins_srv.c
- source3/libads/ads_proto.h
- source3/libads/kerberos_keytab.c
- source3/libads/ldap.c
- source3/libads/util.c
- source3/libsmb/cli_smb2_fnum.c
- source3/libsmb/cliconnect.c
- source3/libsmb/clilist.c
- source3/libsmb/cliquota.c
- source3/libsmb/libsmb_context.c
- source3/libsmb/libsmb_path.c
- source3/modules/nfs4acl_xattr_nfs.c
- source3/modules/vfs_fruit.c
- source3/modules/vfs_media_harmony.c
- source3/modules/vfs_shadow_copy2.c
- source3/modules/vfs_streams_xattr.c
- source3/modules/vfs_unityed_media.c
- source3/modules/vfs_virusfilter.c
- source3/nmbd/nmbd.h
- source3/param/loadparm.h
- source3/param/util.c
- source3/passdb/lookup_sid.c
- source3/printing/nt_printing.c
- source3/printing/nt_printing_migrate.c
- source3/printing/print_iprint.c
- source3/rpc_server/fss/srv_fss_agent.c
- source3/rpc_server/ntsvcs/srv_ntsvcs_nt.c
- source3/rpc_server/rpc_host.c
- source3/rpc_server/spoolss/srv_spoolss_nt.c
- source3/script/tests/test_wbinfo_lookuprids_cache.sh
- source3/smbd/filename.c
- source3/smbd/mangle_hash.c
- source3/smbd/mangle_hash2.c
- source3/smbd/msdfs.c
- source3/smbd/smb1_lanman.c
- source3/smbd/smb1_reply.c
- source3/torture/test_smb1_dfs.c
- source3/torture/torture.c
- source3/utils/clirap2.c
- source3/utils/net_ads.c
- source3/utils/net_lookup.c
- source3/utils/net_rpc.c
- source3/utils/net_vfs.c
- source3/utils/ntlm_auth.c
- source3/utils/sharesec.c
- source3/utils/testparm.c
- source3/winbindd/idmap_nss.c
- source3/winbindd/idmap_tdb.c
- source3/winbindd/nss_info.c
- source3/winbindd/winbindd_cm.c
- source3/winbindd/winbindd_pam.c
- source3/winbindd/winbindd_util.c
- source4/client/client.c
- source4/dsdb/common/util.c
- source4/dsdb/common/util_trusts.c
- source4/dsdb/samdb/cracknames.c
- source4/dsdb/samdb/ldb_modules/encrypted_secrets.c
- source4/dsdb/samdb/ldb_modules/partition_init.c
- source4/dsdb/samdb/ldb_modules/ranged_results.c
- source4/dsdb/samdb/ldb_modules/rootdse.c
- source4/dsdb/samdb/ldb_modules/samldb.c
- source4/lib/registry/util.c
- source4/lib/socket/interface.c
- source4/lib/socket/socket_ip.c
- source4/nbt_server/wins/winsdb.c
- source4/ntvfs/cifs/vfs_cifs.c
- source4/ntvfs/ipc/vfs_ipc.c
- source4/ntvfs/ntvfs_generic.c
- source4/ntvfs/posix/pvfs_rename.c
- source4/ntvfs/posix/pvfs_resolve.c
- source4/ntvfs/posix/pvfs_shortname.c
- source4/ntvfs/posix/pvfs_sys.c
- source4/ntvfs/posix/vfs_posix.c
- source4/ntvfs/simple/svfs_util.c
- source4/ntvfs/simple/vfs_simple.c
- source4/rpc_server/lsa/lsa_init.c
- source4/rpc_server/lsa/lsa_lookup.c
- source4/smb_server/smb/service.c
- source4/torture/krb5/kdc-canon-heimdal.c
- source4/torture/libsmbclient/libsmbclient.c
- source4/torture/ndr/string.c
- source4/torture/raw/qfileinfo.c
- source4/torture/rpc/spoolss.c
- source4/torture/smbtorture.c
- source4/torture/winbind/struct_based.c
- source4/utils/oLschema2ldif/lib.c
- testprogs/blackbox/test_net_ads_join_to_preferred_dc.sh
- third_party/resolv_wrapper/resolv_wrapper.c
The diff was not included because it is too large.
View it on GitLab: https://salsa.debian.org/samba-team/samba/-/compare/feebc8fca75b1a1084188f29048138ee8acea9f2...a33cda567b5dc70e8f6c085cd4a58b4fe9ae7400
--
View it on GitLab: https://salsa.debian.org/samba-team/samba/-/compare/feebc8fca75b1a1084188f29048138ee8acea9f2...a33cda567b5dc70e8f6c085cd4a58b4fe9ae7400
You're receiving this email because of your account on salsa.debian.org. Manage all notifications: https://salsa.debian.org/-/profile/notifications | Help: https://salsa.debian.org/help
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-samba-maint/attachments/20260630/d3c92f54/attachment-0001.htm>
More information about the Pkg-samba-maint
mailing list