Source-Changes-HG archive

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

[src/trunk]: src/sys/net Fix function name that was changed by mistake in the...



details:   https://anonhg.NetBSD.org/src/rev/b052c46a6500
branches:  trunk
changeset: 749376:b052c46a6500
user:      mbalmer <mbalmer%NetBSD.org@localhost>
date:      Sat Nov 28 09:20:37 2009 +0000

description:
Fix function name that was changed by mistake in the previous whitespace
commit.

diffstat:

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

diffs (27 lines):

diff -r 00918510ba38 -r b052c46a6500 sys/net/if_ethersubr.c
--- a/sys/net/if_ethersubr.c    Sat Nov 28 08:44:00 2009 +0000
+++ b/sys/net/if_ethersubr.c    Sat Nov 28 09:20:37 2009 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_ethersubr.c,v 1.174 2009/11/28 02:58:21 isaki Exp $ */
+/*     $NetBSD: if_ethersubr.c,v 1.175 2009/11/28 09:20:37 mbalmer 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.174 2009/11/28 02:58:21 isaki Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_ethersubr.c,v 1.175 2009/11/28 09:20:37 mbalmer Exp $");
 
 #include "opt_inet.h"
 #include "opt_atalk.h"
@@ -904,7 +904,7 @@
                        break;
                case ETHERTYPE_AARP:
                        /* probably this should be done with a NETISR as well */
-                       arpinput(ifp, m); /* XXX */
+                       aarpinput(ifp, m); /* XXX */
                        return;
 #endif /* NETATALK */
                default:



Home | Main Index | Thread Index | Old Index