From: Volker Lendecke Date: Fri, 16 Jan 2026 14:55:47 +0000 (+0100) Subject: adouble: Use strequal_m instead of strcasecmp_m X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=557190d00ce1b266142b78164e2c53f55c83eb10;p=thirdparty%2Fsamba.git adouble: Use strequal_m instead of strcasecmp_m Signed-off-by: Volker Lendecke Reviewed-by: Anoop C S --- diff --git a/source3/lib/adouble.c b/source3/lib/adouble.c index 90d8df3809a..62e09587a45 100644 --- a/source3/lib/adouble.c +++ b/source3/lib/adouble.c @@ -2035,7 +2035,7 @@ NTSTATUS ad_unconvert(TALLOC_CTX *mem_ctx, } for (i = 0; i < num_streams; i++) { - if (strcasecmp_m(streams[i].name, "::$DATA") == 0) { + if (strequal_m(streams[i].name, "::$DATA")) { continue; } to_convert++;