Source-Changes-HG archive

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

[src/trunk]: src/sys/net white space -> tab.



details:   https://anonhg.NetBSD.org/src/rev/da2380c5775d
branches:  trunk
changeset: 749370:da2380c5775d
user:      isaki <isaki%NetBSD.org@localhost>
date:      Sat Nov 28 02:58:21 2009 +0000

description:
white space -> tab.

diffstat:

 sys/net/if_ethersubr.c |  22 +++++++++++-----------
 1 files changed, 11 insertions(+), 11 deletions(-)

diffs (58 lines):

diff -r 1abbb18f9a0f -r da2380c5775d sys/net/if_ethersubr.c
--- a/sys/net/if_ethersubr.c    Sat Nov 28 02:56:14 2009 +0000
+++ b/sys/net/if_ethersubr.c    Sat Nov 28 02:58:21 2009 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_ethersubr.c,v 1.173 2009/11/20 02:14:56 christos Exp $      */
+/*     $NetBSD: if_ethersubr.c,v 1.174 2009/11/28 02:58:21 isaki Exp $ */
 
 /*
  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -61,7 +61,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_ethersubr.c,v 1.173 2009/11/20 02:14:56 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_ethersubr.c,v 1.174 2009/11/28 02:58:21 isaki Exp $");
 
 #include "opt_inet.h"
 #include "opt_atalk.h"
@@ -283,7 +283,7 @@
 #ifdef INET
        case AF_INET:
                if (m->m_flags & M_BCAST)
-                       (void)memcpy(edst, etherbroadcastaddr, sizeof(edst));
+                       (void)memcpy(edst, etherbroadcastaddr, sizeof(edst));
                else if (m->m_flags & M_MCAST)
                        ETHER_MAP_IP_MULTICAST(&satocsin(dst)->sin_addr, edst);
                else if (!arpresolve(ifp, rt, m, dst, edst))
@@ -297,7 +297,7 @@
        case AF_ARP:
                ah = mtod(m, struct arphdr *);
                if (m->m_flags & M_BCAST)
-                       (void)memcpy(edst, etherbroadcastaddr, sizeof(edst));
+                       (void)memcpy(edst, etherbroadcastaddr, sizeof(edst));
                else {
                        void *tha = ar_tha(ah);
 
@@ -898,14 +898,14 @@
                        break;
 #endif
 #ifdef NETATALK
-               case ETHERTYPE_ATALK:
-                       schednetisr(NETISR_ATALK);
-                       inq = &atintrq1;
-                       break;
-               case ETHERTYPE_AARP:
+               case ETHERTYPE_ATALK:
+                       schednetisr(NETISR_ATALK);
+                       inq = &atintrq1;
+                       break;
+               case ETHERTYPE_AARP:
                        /* probably this should be done with a NETISR as well */
-                       aarpinput(ifp, m); /* XXX */
-                       return;
+                       arpinput(ifp, m); /* XXX */
+                       return;
 #endif /* NETATALK */
                default:
                        m_freem(m);



Home | Main Index | Thread Index | Old Index