aboutsummaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorJarno Rajahalme <jarno.rajahalme@nsn.com>2012-12-03 12:37:56 +0200
committerBen Pfaff <blp@nicira.com>2012-12-03 13:03:06 -0800
commit31a9e63f0f7e771c849f7ef45c9827fcc78abe03 (patch)
tree312c6e524cc342ab613e98495e8e28f1f6d9360c /build-aux
parent90ef0206ea8f5a395c70de797e87ac4eb904cb0d (diff)
include/openflow: Moved remaining common definitions from openflow-1.0.h
Moved remaining common definitions from openflow-1.0.h to openflow-common.h and renamed 1.0 specific definitions with the "10" infix. Added hstamp rules for new headers, fixed non-ASCII characters in openflow-1.3.h, Commented out trailing zero-length data members. Signed-off-by: Jarno Rajahalme <jarno.rajahalme@nsn.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'build-aux')
-rwxr-xr-xbuild-aux/check-structs2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/check-structs b/build-aux/check-structs
index e50e3101..0428abf5 100755
--- a/build-aux/check-structs
+++ b/build-aux/check-structs
@@ -190,7 +190,7 @@ def parseStruct():
forceMatch(';')
if size % alignment:
shortage = alignment - (size % alignment)
- if (structName == "struct ofp_packet_in" and
+ if (structName == "struct ofp10_packet_in" and
shortage == 2 and
memberName == 'data' and
count == 0):