X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=vswitchd%2Fbridge.c;h=0f4cf2c2e8051b5d36b16c193e6f3a5280a8524d;hb=820b35a330191a63e0c538de2dce27ca09e43627;hp=6ce7d2b3346919c9b438530887d37271382e90e2;hpb=c6e02a5cf282e0849120ce3b56893007af4ef24c;p=sliver-openvswitch.git diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 6ce7d2b33..0f4cf2c2e 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -3594,10 +3594,9 @@ iface_set_mac(struct iface *iface) static void iface_set_ofport(const struct ovsrec_interface *if_cfg, ofp_port_t ofport) { - int64_t port_; - port_ = (ofport == OFPP_NONE) ? -1 : ofp_to_u16(ofport); if (if_cfg && !ovsdb_idl_row_is_synthetic(&if_cfg->header_)) { - ovsrec_interface_set_ofport(if_cfg, &port_, 1); + int64_t port = ofport == OFPP_NONE ? -1 : ofp_to_u16(ofport); + ovsrec_interface_set_ofport(if_cfg, &port, 1); } }