Fix spelling

This commit is contained in:
Minsoo Choo
2024-01-27 17:52:39 -05:00
committed by Jeffrey Altman
parent c80c04b235
commit aff90c322e
30 changed files with 43 additions and 43 deletions

View File

@@ -271,7 +271,7 @@ parse_hostspec(krb5_context context, struct krb5_krbhst_data *kd,
if (p[0] == '[' && (q = strchr(p, ']')) != NULL) {
/* if address looks like [foo:bar] or [foo:bar]: its a ipv6
adress, strip of [] */
address, strip of [] */
memcpy(hi->hostname, &p[1], q - p - 1);
hi->hostname[q - p - 1] = '\0';
p = q + 1;