# HG changeset patch # User Roy Marples # Date 1598853087 -3600 # Node ID f8d95f0027589081428d2d14d2949817e09fee4f # Parent c2b796cf7e9431424b02e6db4f280a674d14f75a dhcpcd: Rename function for prior now it no longer inits diff -r c2b796cf7e94 -r f8d95f002758 src/dhcpcd.c --- a/src/dhcpcd.c Mon Aug 31 06:48:59 2020 +0100 +++ b/src/dhcpcd.c Mon Aug 31 06:51:27 2020 +0100 @@ -1154,7 +1154,7 @@ #endif static void -dhcpcd_initprestartinterface(void *arg) +dhcpcd_runprestartinterface(void *arg) { struct interface *ifp = arg; @@ -1227,7 +1227,7 @@ if (ifp->active) { dhcpcd_initstate(ifp, 0); eloop_timeout_add_sec(ctx->eloop, 0, - dhcpcd_initprestartinterface, ifp); + dhcpcd_runprestartinterface, ifp); } } free(ifaces);