1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-18 15:30:21 +00:00

Remove unused ifaddr and ifreq local variables.

MFC after:	3 days
This commit is contained in:
Robert Watson 2009-02-12 23:55:35 +00:00
parent 47a7b0fa21
commit 6d0147064d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=188545

View File

@ -861,14 +861,10 @@ cm_ioctl(ifp, command, data)
caddr_t data;
{
struct cm_softc *sc;
struct ifaddr *ifa;
struct ifreq *ifr;
int error;
error = 0;
sc = ifp->if_softc;
ifa = (struct ifaddr *)data;
ifr = (struct ifreq *)data;
#if defined(CM_DEBUG) && (CM_DEBUG > 2)
if_printf(ifp, "ioctl() called, cmd = 0x%lx\n", command);