Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/netinet Deanonymize structure for llinfo_arp.



details:   https://anonhg.NetBSD.org/src/rev/bccba607c2d6
branches:  trunk
changeset: 332041:bccba607c2d6
user:      matt <matt%NetBSD.org@localhost>
date:      Fri Sep 05 06:02:11 2014 +0000

description:
Deanonymize structure for llinfo_arp.

diffstat:

 sys/netinet/if_arp.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r ec4ba98ca30d -r bccba607c2d6 sys/netinet/if_arp.c
--- a/sys/netinet/if_arp.c      Fri Sep 05 06:01:24 2014 +0000
+++ b/sys/netinet/if_arp.c      Fri Sep 05 06:02:11 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_arp.c,v 1.158 2014/06/03 01:24:32 ozaki-r Exp $     */
+/*     $NetBSD: if_arp.c,v 1.159 2014/09/05 06:02:11 matt Exp $        */
 
 /*-
  * Copyright (c) 1998, 2000, 2008 The NetBSD Foundation, Inc.
@@ -68,7 +68,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_arp.c,v 1.158 2014/06/03 01:24:32 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_arp.c,v 1.159 2014/09/05 06:02:11 matt Exp $");
 
 #include "opt_ddb.h"
 #include "opt_inet.h"
@@ -153,7 +153,7 @@
 static void in_arpinput(struct mbuf *);
 static void arp_drainstub(void);
 
-LIST_HEAD(, llinfo_arp) llinfo_arp;
+LIST_HEAD(llinfo_arpq, llinfo_arp) llinfo_arp;
 struct ifqueue arpintrq = {
        .ifq_head = NULL,
        .ifq_tail = NULL,



Home | Main Index | Thread Index | Old Index