diff options
author | phk <phk@FreeBSD.org> | 1996-01-11 17:48:59 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1996-01-11 17:48:59 +0000 |
commit | 205670521861f654e6607b24a0d60c9dea033b3c (patch) | |
tree | 97b25e0059b526362e8a00bdfee724ccf226243c /usr.sbin/ppp/arp.c | |
parent | 7bf532e1cd2982ba101a1fceae9eee6faa99e57c (diff) | |
download | FreeBSD-src-205670521861f654e6607b24a0d60c9dea033b3c.zip FreeBSD-src-205670521861f654e6607b24a0d60c9dea033b3c.tar.gz |
Final cleanup for now. -Wall is now silent. A couple of bogons found.
Diffstat (limited to 'usr.sbin/ppp/arp.c')
-rw-r--r-- | usr.sbin/ppp/arp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/ppp/arp.c b/usr.sbin/ppp/arp.c index 8ff7d8b..61edfba 100644 --- a/usr.sbin/ppp/arp.c +++ b/usr.sbin/ppp/arp.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: arp.c,v 1.2 1995/05/30 03:50:23 rgrimes Exp $ + * $Id: arp.c,v 1.3 1996/01/10 21:27:35 phk Exp $ * */ @@ -54,6 +54,8 @@ static int rtm_seq; +static int get_ether_addr __P((int, u_long, struct sockaddr_dl *)); + #define BCOPY(s, d, l) memcpy(d, s, l) #define BZERO(s, n) memset(s, 0, n) /* |