From: Jeremy Allison Date: Tue, 21 Jul 2020 00:40:06 +0000 (-0700) Subject: s3: libsmb: Cleanup - reformatting 2nd use of resolve_ads() parameters inside interna... X-Git-Tag: talloc-2.3.2~955 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d42ba0b1b68c6566b5ecfb5a01a1a53e922c1246;p=thirdparty%2Fsamba.git s3: libsmb: Cleanup - reformatting 2nd use of resolve_ads() parameters inside internal_resolve_name(). No logic change. Signed-off-by: Jeremy Allison Reviewed-by: Isaac Boukris --- diff --git a/source3/libsmb/namequery.c b/source3/libsmb/namequery.c index 2738f5e26f4..43faf143940 100644 --- a/source3/libsmb/namequery.c +++ b/source3/libsmb/namequery.c @@ -2708,8 +2708,11 @@ NTSTATUS internal_resolve_name(const char *name, } else if(strequal( tok, "ads")) { /* deal with 0x1c and 0x1b names here. * This will result in a SRV record lookup */ - status = resolve_ads(name, name_type, sitename, - return_iplist, return_count); + status = resolve_ads(name, + name_type, + sitename, + return_iplist, + return_count); if (!NT_STATUS_IS_OK(status)) { continue; }