From 62fd02476a93f95f0732056d6a0a340d8eeba8db Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 29 Jun 2012 10:36:48 -0700 Subject: [PATCH] ofproto: Fix typos in comments. This corrects the spelling of the OFOPERATION_* constants. Signed-off-by: Ben Pfaff --- ofproto/ofproto.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ofproto/ofproto.c b/ofproto/ofproto.c index 709713d0..6559e8e8 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. */ }; -- 2.30.2