From 4f168c2c3b59f7fe405564188624132277e37ffc Mon Sep 17 00:00:00 2001 From: Ethan Jackson Date: Tue, 29 Mar 2011 12:37:49 -0700 Subject: [PATCH] learning-switch: Remove dead assignment. --- lib/learning-switch.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/learning-switch.c b/lib/learning-switch.c index 97aaf9fe5..dc9af7739 100644 --- a/lib/learning-switch.c +++ b/lib/learning-switch.c @@ -440,7 +440,6 @@ process_packet_in(struct lswitch *sw, struct rconn *rconn, /* Send the packet, and possibly the whole flow, to the output port. */ if (sw->max_idle >= 0 && (!sw->ml || out_port != OFPP_FLOOD)) { struct ofpbuf *buffer; - struct ofp_flow_mod *ofm; struct cls_rule rule; /* The output port is known, or we always flood everything, so add a @@ -449,7 +448,6 @@ process_packet_in(struct lswitch *sw, struct rconn *rconn, buffer = make_add_flow(&rule, ntohl(opi->buffer_id), sw->max_idle, actions_len); ofpbuf_put(buffer, actions, actions_len); - ofm = buffer->data; queue_tx(sw, rconn, buffer); /* If the switch didn't buffer the packet, we need to send a copy. */ -- 2.43.0