summaryrefslogtreecommitdiff
path: root/ofproto
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2018-02-15 13:43:41 -0800
committerBen Pfaff <blp@ovn.org>2018-02-28 16:48:54 -0800
commitd9cea8f5f341a60f60cd2bf61d0122f3c6715ca1 (patch)
treec2ee24ab35ed7d6113dfd02a01c97cf5bd366813 /ofproto
parentbc7284f56198636c2bace98bc3bc269da67a5fd1 (diff)
downloadopenvswitch-d9cea8f5f341a60f60cd2bf61d0122f3c6715ca1.tar.gz
ofp-util: Use consistent naming convention.
Most of the tree now uses "encode" as the verb for making an OpenFlow message, so adopt it here in this very old code as well. Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Justin Pettit <jpettit@ovn.org>
Diffstat (limited to 'ofproto')
-rw-r--r--ofproto/ofproto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ofproto/ofproto.c b/ofproto/ofproto.c
index 0e73d4e82..0819d0de2 100644
--- a/ofproto/ofproto.c
+++ b/ofproto/ofproto.c
@@ -3193,7 +3193,7 @@ learned_cookies_flush(struct ofproto *ofproto, struct ovs_list *dead_cookies)
static enum ofperr
handle_echo_request(struct ofconn *ofconn, const struct ofp_header *oh)
{
- ofconn_send_reply(ofconn, make_echo_reply(oh));
+ ofconn_send_reply(ofconn, ofputil_encode_echo_reply(oh));
return 0;
}