diff options
| author | Lu Hongfei <[email protected]> | 2023-07-07 08:12:50 +0000 |
|---|---|---|
| committer | Daniel Borkmann <[email protected]> | 2023-07-07 17:36:04 +0000 |
| commit | 856fe03d929205b4c8c8fa51296342cd85592e3f (patch) | |
| tree | bf672495d46b6428f27ebc04a4f20127391c6f4c /tools/testing/selftests/bpf/prog_tests/tcp_hdr_options.c | |
| parent | libbpf: Use available_filter_functions_addrs with multi-kprobes (diff) | |
| download | kernel-856fe03d929205b4c8c8fa51296342cd85592e3f.tar.gz kernel-856fe03d929205b4c8c8fa51296342cd85592e3f.zip | |
selftests/bpf: Correct two typos
When wrapping code, use ';' better than using ',' which is more in line with
the coding habits of most engineers.
Signed-off-by: Lu Hongfei <[email protected]>
Signed-off-by: Daniel Borkmann <[email protected]>
Acked-by: Hou Tao <[email protected]>
Acked-by: Stanislav Fomichev <[email protected]>
Link: https://lore.kernel.org/bpf/[email protected]
Diffstat (limited to 'tools/testing/selftests/bpf/prog_tests/tcp_hdr_options.c')
| -rw-r--r-- | tools/testing/selftests/bpf/prog_tests/tcp_hdr_options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/bpf/prog_tests/tcp_hdr_options.c b/tools/testing/selftests/bpf/prog_tests/tcp_hdr_options.c index 13bcaeb028b8..56685fc03c7e 100644 --- a/tools/testing/selftests/bpf/prog_tests/tcp_hdr_options.c +++ b/tools/testing/selftests/bpf/prog_tests/tcp_hdr_options.c @@ -347,7 +347,7 @@ static void syncookie_estab(void) exp_active_estab_in.max_delack_ms = 22; exp_passive_hdr_stg.syncookie = true; - exp_active_hdr_stg.resend_syn = true, + exp_active_hdr_stg.resend_syn = true; prepare_out(); |
