The branch, master has been updated
via d4befe18a02 lib/util: let dump_data_diff() pass omit_zero_bytes to
dump_data_diff_cb()
from 50a958ff1d7 pysmbd: fix samba.tests.samba_tool.ntacl failure due to
errno overwrite
https://git.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit d4befe18a02c68a1c19863ea02facc272c0e5997
Author: Stefan Metzmacher <[email protected]>
Date: Tue Apr 22 15:18:09 2025 +0200
lib/util: let dump_data_diff() pass omit_zero_bytes to dump_data_diff_cb()
Signed-off-by: Stefan Metzmacher <[email protected]>
Reviewed-by: Günther Deschner <[email protected]>
Autobuild-User(master): Stefan Metzmacher <[email protected]>
Autobuild-Date(master): Tue Apr 29 17:56:37 UTC 2025 on atb-devel-224
-----------------------------------------------------------------------
Summary of changes:
lib/util/util.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
Changeset truncated at 500 lines:
diff --git a/lib/util/util.c b/lib/util/util.c
index 75a17d81b22..139b75b616a 100644
--- a/lib/util/util.c
+++ b/lib/util/util.c
@@ -698,7 +698,13 @@ _PUBLIC_ void dump_data_diff(int dbgc_class, int level,
if (!DEBUGLVLC(dbgc_class, level)) {
return;
}
- dump_data_diff_cb(buf1, len1, buf2, len2, true, debugadd_channel_cb,
&dcl);
+ dump_data_diff_cb(buf1,
+ len1,
+ buf2,
+ len2,
+ omit_zero_bytes,
+ debugadd_channel_cb,
+ &dcl);
}
_PUBLIC_ void dump_data_file_diff(FILE *f,
--
Samba Shared Repository