ofproto: Fix typos in comments.
authorBen Pfaff <blp@nicira.com>
Fri, 29 Jun 2012 17:36:48 +0000 (10:36 -0700)
committerBen Pfaff <blp@nicira.com>
Fri, 6 Jul 2012 17:02:45 +0000 (10:02 -0700)
This corrects the spelling of the OFOPERATION_* constants.

Signed-off-by: Ben Pfaff <blp@nicira.com>
ofproto/ofproto.c

index 709713d02e39b28fbcc08fedd854c1bb5091eaae..6559e8e84e1e276c0b989168d029f19bf98b55b3 100644 (file)
@@ -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. */
 };