add missing ;

This commit is contained in:
Eric Andersen 2004-07-26 12:22:33 +00:00
parent 461cdc89a9
commit 7f8bcbefc7

View File

@ -573,7 +573,7 @@ static int dhcp_down(struct interface_defn_t *ifd, execfn *exec)
} else if (execable("/sbin/dhcpcd")) {
result = execute("dhcpcd -k %iface%", ifd, exec);
}
static_down(ifd, exec)
static_down(ifd, exec);
return (result || bootp_down(ifd, exec));
}