summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2012-06-29 10:36:48 -0700
committerBen Pfaff <blp@nicira.com>2012-07-06 10:02:45 -0700
commit62fd02476a93f95f0732056d6a0a340d8eeba8db (patch)
tree17c7e217a753e345e7af3699fde99702f22ab3f5
parente78eed5609c9c8a72193a6de194bd8c7c63fb7ed (diff)
downloadopenvswitch-62fd02476a93f95f0732056d6a0a340d8eeba8db.tar.gz
ofproto: Fix typos in comments.
This corrects the spelling of the OFOPERATION_* constants. Signed-off-by: Ben Pfaff <blp@nicira.com>
-rw-r--r--ofproto/ofproto.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ofproto/ofproto.c b/ofproto/ofproto.c
index 709713d02..6559e8e84 100644
--- a/ofproto/ofproto.c
+++ b/ofproto/ofproto.c
@@ -118,9 +118,9 @@ struct ofoperation {
struct hmap_node hmap_node; /* In ofproto's "deletions" hmap. */
struct rule *rule; /* Rule being operated upon. */
enum ofoperation_type type; /* Type of operation. */
- struct rule *victim; /* OFOPERATION_ADDING: Replaced rule. */
- struct ofpact *ofpacts; /* OFOPERATION_MODIFYING: Replaced actions. */
- size_t ofpacts_len; /* OFOPERATION_MODIFYING: Bytes of ofpacts. */
+ struct rule *victim; /* OFOPERATION_ADD: Replaced rule. */
+ struct ofpact *ofpacts; /* OFOPERATION_MODIFY: Replaced actions. */
+ size_t ofpacts_len; /* OFOPERATION_MODIFY: Bytes of ofpacts. */
ovs_be64 flow_cookie; /* Rule's old flow cookie. */
};