From: Justin Pettit Date: Fri, 5 Jun 2009 21:52:55 +0000 (-0700) Subject: vswitch: Fix typos in OFMP comments. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce87c728133414f2d49f3e83f67aed5e5a4b7953;p=openvswitch vswitch: Fix typos in OFMP comments. A couple of comments describing the new UUID TLVs were incorrect and this fixes them. --- diff --git a/include/openflow/openflow-mgmt.h b/include/openflow/openflow-mgmt.h index 1ff3ba9a..c7809427 100644 --- a/include/openflow/openflow-mgmt.h +++ b/include/openflow/openflow-mgmt.h @@ -102,7 +102,7 @@ struct ofmptsr_dp_uuid { uint16_t len; /* Length. */ uint8_t pad[4]; uint64_t dp_id; /* Datapath ID. */ - uint8_t uuid_list[0]; /* List of UUID associated with + uint8_t uuid_list[0]; /* List of UUIDs associated with * this datapath. */ }; OFP_ASSERT(sizeof(struct ofmptsr_dp_uuid) == 16); @@ -113,7 +113,7 @@ struct ofmptsr_mgmt_uuid { uint16_t len; /* 52. */ uint8_t pad[4]; uint64_t mgmt_id; /* Management ID. */ - uint8_t uuid[OFMP_UUID_LEN]; /* Null-terminated name. */ + uint8_t uuid[OFMP_UUID_LEN]; /* System UUID. */ uint8_t pad2[4]; /* Pad for 64-bit systems. */ }; OFP_ASSERT(sizeof(struct ofmptsr_mgmt_uuid) == 56);