diff options
author | wollman <wollman@FreeBSD.org> | 1997-01-08 15:23:17 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1997-01-08 15:23:17 +0000 |
commit | 06bc53a1a80bf8b1de7effb6f315fd4ce35bd29e (patch) | |
tree | 9ab126e9a2c5c486c2f7fcbf3c33d753c63a8763 /sys | |
parent | c61773de86fc575b9491ac1f97f5c97d7806fd39 (diff) | |
download | FreeBSD-src-06bc53a1a80bf8b1de7effb6f315fd4ce35bd29e.zip FreeBSD-src-06bc53a1a80bf8b1de7effb6f315fd4ce35bd29e.tar.gz |
Fix typo. I hate waking up at 4:45 in the morning...
Diffstat (limited to 'sys')
-rw-r--r-- | sys/net/if.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if.c b/sys/net/if.c index 2f703b5..b382d48 100644 --- a/sys/net/if.c +++ b/sys/net/if.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)if.c 8.3 (Berkeley) 1/4/94 - * $Id: if.c,v 1.38 1996/12/13 21:28:37 wollman Exp $ + * $Id: if.c,v 1.40 1997/01/08 13:20:24 wollman Exp $ */ #include <sys/param.h> @@ -796,7 +796,7 @@ int if_addmulti(ifp, sa, retifma) struct ifnet *ifp; /* interface to manipulate */ struct sockaddr *sa; /* address to add */ - struct ifmultiaddr *retifma; + struct ifmultiaddr **retifma; { struct sockaddr *llsa, *dupsa; int error, s; |