From: Roy Marples Date: Tue, 26 Mar 2013 15:28:41 +0000 (+0000) Subject: Remove pointless double assignment X-Git-Tag: v5.99.6~37 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=564db9ad48423a253fd2dc0c8e51af13fb7a6be5;p=thirdparty%2Fdhcpcd.git Remove pointless double assignment --- diff --git a/dhcp.c b/dhcp.c index 59c8f496..bbcbd45a 100644 --- a/dhcp.c +++ b/dhcp.c @@ -1937,7 +1937,7 @@ dhcp_inform(struct interface *ifp) void dhcp_reboot_newopts(struct interface *ifp, int oldopts) { - struct if_options *ifo = ifp->options; + struct if_options *ifo; struct dhcp_state *state = D_STATE(ifp); if (state == NULL) @@ -1955,7 +1955,7 @@ dhcp_reboot_newopts(struct interface *ifp, int oldopts) static void dhcp_reboot(struct interface *ifp) { - struct if_options *ifo = ifp->options; + struct if_options *ifo; struct dhcp_state *state = D_STATE(ifp); if (state == NULL)