From 5e314e8e771345c11df811fc45d584911cbc1642 Mon Sep 17 00:00:00 2001 From: Lorand Jakab Date: Fri, 4 Apr 2014 11:09:52 +0300 Subject: [PATCH] ofpbuf: fix struct comment Signed-off-by: Lorand Jakab Signed-off-by: Ben Pfaff --- lib/ofpbuf.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ofpbuf.h b/lib/ofpbuf.h index 3312e9bc1..ea863dbb5 100644 --- a/lib/ofpbuf.h +++ b/lib/ofpbuf.h @@ -67,11 +67,11 @@ struct ofpbuf { uint32_t allocated; /* Number of bytes allocated. */ void *frame; /* Packet frame start, or NULL. */ - uint16_t l2_5_ofs; /* MPLS label stack offset from 'packet', or + uint16_t l2_5_ofs; /* MPLS label stack offset from 'frame', or * UINT16_MAX */ - uint16_t l3_ofs; /* Network-level header offset from 'packet', + uint16_t l3_ofs; /* Network-level header offset from 'frame', or UINT16_MAX. */ - uint16_t l4_ofs; /* Transport-level header offset from 'packet', + uint16_t l4_ofs; /* Transport-level header offset from 'frame', or UINT16_MAX. */ enum ofpbuf_source source; /* Source of memory allocated as 'base'. */ struct list list_node; /* Private list element for use by owner. */ -- 2.47.0