Module Name:    src
Committed By:   mbalmer
Date:           Sat Nov 28 09:20:37 UTC 2009

Modified Files:
        src/sys/net: if_ethersubr.c

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


To generate a diff of this commit:
cvs rdiff -u -r1.174 -r1.175 src/sys/net/if_ethersubr.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/net/if_ethersubr.c
diff -u src/sys/net/if_ethersubr.c:1.174 src/sys/net/if_ethersubr.c:1.175
--- src/sys/net/if_ethersubr.c:1.174	Sat Nov 28 02:58:21 2009
+++ src/sys/net/if_ethersubr.c	Sat Nov 28 09:20:37 2009
@@ -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:

Reply via email to