mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 14:25:26 +00:00
ofp-util: Use our usual variable naming convention in make_ofp_error_msg().
This commit is contained in:
@@ -888,7 +888,7 @@ make_ofp_error_msg(int error, const struct ofp_header *oh)
|
||||
oem->code = htons(code);
|
||||
} else {
|
||||
struct ofp_error_msg *oem;
|
||||
struct nx_vendor_error *ove;
|
||||
struct nx_vendor_error *nve;
|
||||
uint32_t vendor_id;
|
||||
|
||||
vendor_id = vendor_code_to_id(vendor);
|
||||
@@ -898,15 +898,15 @@ make_ofp_error_msg(int error, const struct ofp_header *oh)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
oem = make_openflow_xid(len + sizeof *oem + sizeof *ove,
|
||||
oem = make_openflow_xid(len + sizeof *oem + sizeof *nve,
|
||||
OFPT_ERROR, xid, &buf);
|
||||
oem->type = htons(NXET_VENDOR);
|
||||
oem->code = htons(NXVC_VENDOR_ERROR);
|
||||
|
||||
ove = ofpbuf_put_uninit(buf, sizeof *ove);
|
||||
ove->vendor = htonl(vendor_id);
|
||||
ove->type = htons(type);
|
||||
ove->code = htons(code);
|
||||
nve = ofpbuf_put_uninit(buf, sizeof *nve);
|
||||
nve->vendor = htonl(vendor_id);
|
||||
nve->type = htons(type);
|
||||
nve->code = htons(code);
|
||||
}
|
||||
|
||||
if (len) {
|
||||
|
Reference in New Issue
Block a user