Fix typos in a couple of OpenFlow related comments.
authorBen Pfaff <blp@nicira.com>
Mon, 26 Aug 2013 22:28:46 +0000 (15:28 -0700)
committerBen Pfaff <blp@nicira.com>
Tue, 27 Aug 2013 20:23:01 +0000 (13:23 -0700)
Signed-off-by: Ben Pfaff <blp@nicira.com>
Acked-by: Ethan Jackson <ethan@nicira.com>
include/openflow/openflow-1.0.h
lib/ofp-util.c

index f2b90db..ef0a3ce 100644 (file)
@@ -295,7 +295,7 @@ struct ofp10_match {
 OFP_ASSERT(sizeof(struct ofp10_match) == 40);
 
 enum ofp10_flow_mod_flags {
-    OFPFF10_EMERG       = 1 << 2   /* Ramark this is for emergency. */
+    OFPFF10_EMERG       = 1 << 2 /* Part of "emergency flow cache". */
 };
 
 /* Flow setup and teardown (controller -> datapath). */
index 62cfd2e..edda338 100644 (file)
@@ -1577,7 +1577,7 @@ ofputil_decode_flow_mod(struct ofputil_flow_mod *fm,
     ofpbuf_use_const(&b, oh, ntohs(oh->length));
     raw = ofpraw_pull_assert(&b);
     if (raw == OFPRAW_OFPT11_FLOW_MOD) {
-        /* Standard OpenFlow 1.1 flow_mod. */
+        /* Standard OpenFlow 1.1+ flow_mod. */
         const struct ofp11_flow_mod *ofm;
         enum ofperr error;