From: Ben Pfaff Date: Fri, 29 Jun 2012 17:36:48 +0000 (-0700) Subject: ofproto: Fix typos in comments. X-Git-Tag: v1.9.0~528 X-Git-Url: http://git.cascardo.eti.br/?a=commitdiff_plain;h=62fd02476a93f95f0732056d6a0a340d8eeba8db;p=cascardo%2Fovs.git ofproto: Fix typos in comments. This corrects the spelling of the OFOPERATION_* constants. Signed-off-by: Ben Pfaff --- 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. */ };