From: Jesse Gross Date: Fri, 12 Mar 2010 19:10:13 +0000 (-0500) Subject: bridge: Remove leftover from config file. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b9172b00781eac517edf7aedc60197161c395264;p=openvswitch bridge: Remove leftover from config file. The 'pfx' variable is no longer used now that the config file is gone and its only purpose in life is to be freed so get rid of it. --- diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 6440bb9a..596040b4 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -1530,7 +1530,6 @@ static void bridge_reconfigure_controller(const struct ovsrec_open_vswitch *ovs_cfg, struct bridge *br) { - char *pfx = xasprintf("bridge.%s.controller", br->name); const struct ovsrec_controller *c; c = bridge_get_controller(ovs_cfg, br); @@ -1624,7 +1623,6 @@ bridge_reconfigure_controller(const struct ovsrec_open_vswitch *ovs_cfg, ofproto_set_probe_interval(br->ofproto, 5); ofproto_set_failure(br->ofproto, false); } - free(pfx); ofproto_set_controller(br->ofproto, br->controller); }