diff mbox series

[ovs-dev] Fix spelling error exposed in binaries.

Message ID 20220708065308.2280467-1-frode.nordahl@canonical.com
State Accepted
Commit 0443c1557eb8ab942b75bc5001d9dc2fc5cba113
Headers show
Series [ovs-dev] Fix spelling error exposed in binaries. | expand

Checks

Context Check Description
ovsrobot/apply-robot success apply and check: success
ovsrobot/github-robot-_Build_and_Test success github build: passed
ovsrobot/intel-ovs-compilation success test: success

Commit Message

Frode Nordahl July 8, 2022, 6:53 a.m. UTC
As reported by Debian lintinan.

Signed-off-by: Frode Nordahl <frode.nordahl@canonical.com>
---
 lib/daemon-unix.c            | 4 ++--
 lib/ovsdb-idl.c              | 2 +-
 lib/perf-counter.c           | 2 +-
 ofproto/ofproto-dpif-sflow.c | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

Comments

Ilya Maximets July 14, 2022, 2:20 p.m. UTC | #1
On 7/8/22 08:53, Frode Nordahl wrote:
> As reported by Debian lintinan.
> 
> Signed-off-by: Frode Nordahl <frode.nordahl@canonical.com>
> ---
>  lib/daemon-unix.c            | 4 ++--
>  lib/ovsdb-idl.c              | 2 +-
>  lib/perf-counter.c           | 2 +-
>  ofproto/ofproto-dpif-sflow.c | 2 +-
>  4 files changed, 5 insertions(+), 5 deletions(-)

s/lintinan/lintian/ :)

Applied, thanks!

Best regards, Ilya Maximets.
Frode Nordahl July 14, 2022, 2:26 p.m. UTC | #2
On Thu, Jul 14, 2022 at 4:20 PM Ilya Maximets <i.maximets@ovn.org> wrote:
>
> On 7/8/22 08:53, Frode Nordahl wrote:
> > As reported by Debian lintinan.
> >
> > Signed-off-by: Frode Nordahl <frode.nordahl@canonical.com>
> > ---
> >  lib/daemon-unix.c            | 4 ++--
> >  lib/ovsdb-idl.c              | 2 +-
> >  lib/perf-counter.c           | 2 +-
> >  ofproto/ofproto-dpif-sflow.c | 2 +-
> >  4 files changed, 5 insertions(+), 5 deletions(-)
>
> s/lintinan/lintian/ :)

Some level of poetic justice to that :)

> Applied, thanks!

Thank you!
diff mbox series

Patch

diff --git a/lib/daemon-unix.c b/lib/daemon-unix.c
index a02fd984b..52f3d4bc6 100644
--- a/lib/daemon-unix.c
+++ b/lib/daemon-unix.c
@@ -980,7 +980,7 @@  daemon_set_new_user(const char *user_spec)
         }
 
         if (e != 0) {
-            VLOG_FATAL("%s: Failed to retrive user %s's uid (%s), aborting.",
+            VLOG_FATAL("%s: Failed to retrieve user %s's uid (%s), aborting.",
                        pidfile, user, ovs_strerror(e));
         }
         if (res == NULL) {
@@ -995,7 +995,7 @@  daemon_set_new_user(const char *user_spec)
         }
 
         if (e != 0) {
-            VLOG_FATAL("%s: Failed to retrive current user's name "
+            VLOG_FATAL("%s: Failed to retrieve current user's name "
                        "(%s), aborting.", pidfile, ovs_strerror(e));
         }
         user = xstrdup(pwd.pw_name);
diff --git a/lib/ovsdb-idl.c b/lib/ovsdb-idl.c
index 3b8741408..3df643308 100644
--- a/lib/ovsdb-idl.c
+++ b/lib/ovsdb-idl.c
@@ -1243,7 +1243,7 @@  ovsdb_idl_row_get_seqno(const struct ovsdb_idl_row *row,
 /* Turns on OVSDB_IDL_TRACK for 'column' in 'idl', ensuring that
  * all rows whose 'column' is modified are traced. Similarly, insert
  * or delete of rows having 'column' are tracked. Clients are able
- * to retrive the tracked rows with the ovsdb_idl_track_get_*()
+ * to retrieve the tracked rows with the ovsdb_idl_track_get_*()
  * functions.
  *
  * This function should be called between ovsdb_idl_create() and
diff --git a/lib/perf-counter.c b/lib/perf-counter.c
index 6952fcb59..022e0d2cd 100644
--- a/lib/perf-counter.c
+++ b/lib/perf-counter.c
@@ -124,7 +124,7 @@  perf_counters_to_ds(struct ds *ds)
 
     err_str = NULL;
     if (fd__ == -1) {
-        err_str = "performance counter is not supported on this platfrom";
+        err_str = "performance counter is not supported on this platform";
     } else if (!shash_count(&perf_counters)) {
         err_str = "performance counter has never been hit";
     }
diff --git a/ofproto/ofproto-dpif-sflow.c b/ofproto/ofproto-dpif-sflow.c
index ab4941364..a405eb056 100644
--- a/ofproto/ofproto-dpif-sflow.c
+++ b/ofproto/ofproto-dpif-sflow.c
@@ -67,7 +67,7 @@  enum dpif_sflow_tunnel_type {
 struct dpif_sflow_port {
     struct hmap_node hmap_node; /* In struct dpif_sflow's "ports" hmap. */
     SFLDataSource_instance dsi; /* sFlow library's notion of port number. */
-    struct ofport *ofport;      /* To retrive port stats. */
+    struct ofport *ofport;      /* To retrieve port stats. */
     odp_port_t odp_port;
     enum dpif_sflow_tunnel_type tunnel_type;
 };