From 5963ba617a472e4d0b82726609126960189dab5d Mon Sep 17 00:00:00 2001 From: bol-van Date: Wed, 16 Oct 2024 13:47:39 +0300 Subject: [PATCH] comment typo --- nfq/helpers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nfq/helpers.c b/nfq/helpers.c index 9d7bea9..dc0c840 100644 --- a/nfq/helpers.c +++ b/nfq/helpers.c @@ -422,7 +422,7 @@ __attribute__((optimize ("no-strict-aliasing"))) void ip6_and(const struct in6_addr * restrict a, const struct in6_addr * restrict b, struct in6_addr * restrict result) { // int128 requires 16-bit alignment. in struct sockaddr_in6.sin6_addr is 8-byte aligned. - // it causes segfault on x64 arch with lastest compiler. it can cause misalign slowdown on other archs + // it causes segfault on x64 arch with latest compiler. it can cause misalign slowdown on other archs // use 64-bit AND ((uint64_t*)result->s6_addr)[0] = ((uint64_t*)a->s6_addr)[0] & ((uint64_t*)b->s6_addr)[0]; ((uint64_t*)result->s6_addr)[1] = ((uint64_t*)a->s6_addr)[1] & ((uint64_t*)b->s6_addr)[1];