netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH iproute2 0/2] Fix typos in two error messages
@ 2024-01-09 15:33 Andrea Claudi
  2024-01-09 15:33 ` [PATCH iproute2 1/2] iplink_xstats: spelling fix in error message Andrea Claudi
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Andrea Claudi @ 2024-01-09 15:33 UTC (permalink / raw)
  To: netdev; +Cc: Jamal Hadi Salim, Stephen Hemminger, David Ahern

Fix spelling for "cannot" in two different places.

Andrea Claudi (2):
  iplink_xstats: spelling fix in error message
  genl: ctrl.c: spelling fix in error message

 genl/ctrl.c        | 2 +-
 ip/iplink_xstats.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
2.43.0


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH iproute2 1/2] iplink_xstats: spelling fix in error message
  2024-01-09 15:33 [PATCH iproute2 0/2] Fix typos in two error messages Andrea Claudi
@ 2024-01-09 15:33 ` Andrea Claudi
  2024-01-10 11:02   ` Petr Machata
  2024-01-09 15:33 ` [PATCH iproute2 2/2] genl: ctrl.c: " Andrea Claudi
  2024-01-11 17:30 ` [PATCH iproute2 0/2] Fix typos in two error messages patchwork-bot+netdevbpf
  2 siblings, 1 reply; 6+ messages in thread
From: Andrea Claudi @ 2024-01-09 15:33 UTC (permalink / raw)
  To: netdev; +Cc: Jamal Hadi Salim, Stephen Hemminger, David Ahern

Cannont --> Cannot

Fixes: 2b99748a60bf ("add missing iplink_xstats.c")
Signed-off-by: Andrea Claudi <aclaudi@redhat.com>
---
 ip/iplink_xstats.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ip/iplink_xstats.c b/ip/iplink_xstats.c
index 6c184c02..8d367984 100644
--- a/ip/iplink_xstats.c
+++ b/ip/iplink_xstats.c
@@ -63,7 +63,7 @@ int iplink_ifla_xstats(int argc, char **argv)
 
 	if (rtnl_statsdump_req_filter(&rth, AF_UNSPEC, filt_mask,
 				      NULL, NULL) < 0) {
-		perror("Cannont send dump request");
+		perror("Cannot send dump request");
 		return -1;
 	}
 
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH iproute2 2/2] genl: ctrl.c: spelling fix in error message
  2024-01-09 15:33 [PATCH iproute2 0/2] Fix typos in two error messages Andrea Claudi
  2024-01-09 15:33 ` [PATCH iproute2 1/2] iplink_xstats: spelling fix in error message Andrea Claudi
@ 2024-01-09 15:33 ` Andrea Claudi
  2024-01-10 11:02   ` Petr Machata
  2024-01-11 17:30 ` [PATCH iproute2 0/2] Fix typos in two error messages patchwork-bot+netdevbpf
  2 siblings, 1 reply; 6+ messages in thread
From: Andrea Claudi @ 2024-01-09 15:33 UTC (permalink / raw)
  To: netdev; +Cc: Jamal Hadi Salim, Stephen Hemminger, David Ahern

Canot --> Cannot

Fixes: 65018ae43b14 ("This patch adds a generic netlink controller...")
Signed-off-by: Andrea Claudi <aclaudi@redhat.com>
---
 genl/ctrl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/genl/ctrl.c b/genl/ctrl.c
index d5b765cc..aff922a4 100644
--- a/genl/ctrl.c
+++ b/genl/ctrl.c
@@ -329,7 +329,7 @@ static int ctrl_listen(int argc, char **argv)
 	struct rtnl_handle rth;
 
 	if (rtnl_open_byproto(&rth, nl_mgrp(GENL_ID_CTRL), NETLINK_GENERIC) < 0) {
-		fprintf(stderr, "Canot open generic netlink socket\n");
+		fprintf(stderr, "Cannot open generic netlink socket\n");
 		return -1;
 	}
 
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH iproute2 1/2] iplink_xstats: spelling fix in error message
  2024-01-09 15:33 ` [PATCH iproute2 1/2] iplink_xstats: spelling fix in error message Andrea Claudi
@ 2024-01-10 11:02   ` Petr Machata
  0 siblings, 0 replies; 6+ messages in thread
From: Petr Machata @ 2024-01-10 11:02 UTC (permalink / raw)
  To: Andrea Claudi; +Cc: netdev, Jamal Hadi Salim, Stephen Hemminger, David Ahern


Andrea Claudi <aclaudi@redhat.com> writes:

> Cannont --> Cannot
>
> Fixes: 2b99748a60bf ("add missing iplink_xstats.c")
> Signed-off-by: Andrea Claudi <aclaudi@redhat.com>

Reviewed-by: Petr Machata <petrm@nvidia.com>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH iproute2 2/2] genl: ctrl.c: spelling fix in error message
  2024-01-09 15:33 ` [PATCH iproute2 2/2] genl: ctrl.c: " Andrea Claudi
@ 2024-01-10 11:02   ` Petr Machata
  0 siblings, 0 replies; 6+ messages in thread
From: Petr Machata @ 2024-01-10 11:02 UTC (permalink / raw)
  To: Andrea Claudi; +Cc: netdev, Jamal Hadi Salim, Stephen Hemminger, David Ahern


Andrea Claudi <aclaudi@redhat.com> writes:

> Canot --> Cannot
>
> Fixes: 65018ae43b14 ("This patch adds a generic netlink controller...")
> Signed-off-by: Andrea Claudi <aclaudi@redhat.com>

Reviewed-by: Petr Machata <petrm@nvidia.com>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH iproute2 0/2] Fix typos in two error messages
  2024-01-09 15:33 [PATCH iproute2 0/2] Fix typos in two error messages Andrea Claudi
  2024-01-09 15:33 ` [PATCH iproute2 1/2] iplink_xstats: spelling fix in error message Andrea Claudi
  2024-01-09 15:33 ` [PATCH iproute2 2/2] genl: ctrl.c: " Andrea Claudi
@ 2024-01-11 17:30 ` patchwork-bot+netdevbpf
  2 siblings, 0 replies; 6+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-01-11 17:30 UTC (permalink / raw)
  To: Andrea Claudi; +Cc: netdev, hadi, stephen, dsahern

Hello:

This series was applied to iproute2/iproute2.git (main)
by Stephen Hemminger <stephen@networkplumber.org>:

On Tue,  9 Jan 2024 16:33:52 +0100 you wrote:
> Fix spelling for "cannot" in two different places.
> 
> Andrea Claudi (2):
>   iplink_xstats: spelling fix in error message
>   genl: ctrl.c: spelling fix in error message
> 
>  genl/ctrl.c        | 2 +-
>  ip/iplink_xstats.c | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)

Here is the summary with links:
  - [iproute2,1/2] iplink_xstats: spelling fix in error message
    https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/commit/?id=ba0d6e6d7dac
  - [iproute2,2/2] genl: ctrl.c: spelling fix in error message
    https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/commit/?id=05a4fc72587f

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-01-11 17:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-09 15:33 [PATCH iproute2 0/2] Fix typos in two error messages Andrea Claudi
2024-01-09 15:33 ` [PATCH iproute2 1/2] iplink_xstats: spelling fix in error message Andrea Claudi
2024-01-10 11:02   ` Petr Machata
2024-01-09 15:33 ` [PATCH iproute2 2/2] genl: ctrl.c: " Andrea Claudi
2024-01-10 11:02   ` Petr Machata
2024-01-11 17:30 ` [PATCH iproute2 0/2] Fix typos in two error messages patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).