1
0
mirror of https://github.com/samba-team/samba.git synced 2025-09-09 01:44:21 +03:00

lib:addns: Fix code spelling

Best reviewed with: `git show --word-diff`.

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Andreas Schneider
2023-03-31 11:01:47 +02:00
committed by Andrew Bartlett
parent f59e813c76
commit 1f2858eada
2 changed files with 3 additions and 3 deletions

View File

@@ -561,7 +561,7 @@ NTSTATUS ads_dns_lookup_a(TALLOC_CTX *ctx,
goto fail; goto fail;
} }
/* /*
* Sychronous doesn't need to care about the rcode or * Synchronous doesn't need to care about the rcode or
* a copy of the name_in. * a copy of the name_in.
*/ */
status = ads_dns_lookup_a_recv(req, status = ads_dns_lookup_a_recv(req,
@@ -766,7 +766,7 @@ NTSTATUS ads_dns_lookup_aaaa(TALLOC_CTX *ctx,
goto fail; goto fail;
} }
/* /*
* Sychronous doesn't need to care about the rcode or * Synchronous doesn't need to care about the rcode or
* a copy of the name_in. * a copy of the name_in.
*/ */
status = ads_dns_lookup_aaaa_recv(req, status = ads_dns_lookup_aaaa_recv(req,

View File

@@ -159,7 +159,7 @@ static void dns_rr_srv_fill_done(
* (hundreds) and a DNS that doesn't return the DC IPs in the * (hundreds) and a DNS that doesn't return the DC IPs in the
* SRV reply, you have bigger problems than this loop linearly * SRV reply, you have bigger problems than this loop linearly
* walking a pointer array. This is theoretically O(n^2), but * walking a pointer array. This is theoretically O(n^2), but
* probably the DNS roundtrip time outweights this by a * probably the DNS roundtrip time outweighs this by a
* lot. And we have a global timeout on this whole * lot. And we have a global timeout on this whole
* dns_rr_srv_fill routine. * dns_rr_srv_fill routine.
*/ */