2018-03-28 10:08:24

by Colin King

[permalink] [raw]
Subject: [PATCH] samples/bpf: fix spelling mistake: "revieve" -> "receive"

From: Colin Ian King <[email protected]>

Trivial fix to spelling mistake in error message text

Signed-off-by: Colin Ian King <[email protected]>
---
samples/bpf/cookie_uid_helper_example.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/samples/bpf/cookie_uid_helper_example.c b/samples/bpf/cookie_uid_helper_example.c
index 9d751e209f31..8eca27e595ae 100644
--- a/samples/bpf/cookie_uid_helper_example.c
+++ b/samples/bpf/cookie_uid_helper_example.c
@@ -246,7 +246,7 @@ static void udp_client(void)
recv_len = recvfrom(s_rcv, &buf, sizeof(buf), 0,
(struct sockaddr *)&si_me, &slen);
if (recv_len < 0)
- error(1, errno, "revieve\n");
+ error(1, errno, "receive\n");
res = memcmp(&(si_other.sin_addr), &(si_me.sin_addr),
sizeof(si_me.sin_addr));
if (res != 0)
--
2.15.1



2018-03-28 16:05:57

by Daniel Borkmann

[permalink] [raw]
Subject: Re: [PATCH] samples/bpf: fix spelling mistake: "revieve" -> "receive"

On 03/28/2018 12:07 PM, Colin King wrote:
> From: Colin Ian King <[email protected]>
>
> Trivial fix to spelling mistake in error message text
>
> Signed-off-by: Colin Ian King <[email protected]>

Applied to bpf-next, thanks Colin!