Fix minor typos in ovs_gdb debug script.
---
 utilities/gdb/ovs_gdb.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/utilities/gdb/ovs_gdb.py b/utilities/gdb/ovs_gdb.py
index cb9778c69..fab69cc8e 100644
--- a/utilities/gdb/ovs_gdb.py
+++ b/utilities/gdb/ovs_gdb.py
@@ -122,7 +122,7 @@ def get_global_variable(name):
     var = gdb.lookup_symbol(name)[0]
     if var is None or not var.is_variable:
         print("Can't find {} global variable, are you sure "
-              "your debugging OVS?".format(name))
+              "you are debugging OVS?".format(name))
         return None
     return gdb.parse_and_eval(name)
 
@@ -424,7 +424,7 @@ class CmdDumpBridgePorts(gdb.Command):
     def display_single_port(port, indent=0):
         indent = " " * indent
         port = port.cast(gdb.lookup_type('struct port').pointer())
-        print("{}(struct port *) {}: name = {}, brige = (struct bridge *) {}".
+        print("{}(struct port *) {}: name = {}, bridge = (struct bridge *) {}".
               format(indent, port, port['name'].string(),
                      port['bridge']))
 
-- 
2.17.2

_______________________________________________
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Reply via email to