summaryrefslogtreecommitdiff
path: root/sys/dev/ofw
diff options
context:
space:
mode:
authorcgd <cgd@NetBSD.org>1998-01-22 01:47:43 +0000
committercgd <cgd@NetBSD.org>1998-01-22 01:47:43 +0000
commitff65e57285ea26b37186294caebc2e6dbd6bbe67 (patch)
tree6d34fb06ad1fc013c604ba9cd736e8be64757fe8 /sys/dev/ofw
parent15d917d9fe9d6a5d51e3dee31bda41d116ba3904 (diff)
fix typo: s/max-address/mac-address/
Diffstat (limited to 'sys/dev/ofw')
-rw-r--r--sys/dev/ofw/ofnet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ofw/ofnet.c b/sys/dev/ofw/ofnet.c
index 4574b6a21d4..d5b0c3fdbf3 100644
--- a/sys/dev/ofw/ofnet.c
+++ b/sys/dev/ofw/ofnet.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ofnet.c,v 1.10 1998/01/12 09:33:33 thorpej Exp $ */
+/* $NetBSD: ofnet.c,v 1.11 1998/01/22 01:47:43 cgd Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -144,7 +144,7 @@ ofnattach(parent, self, aux)
if (OF_getprop(ofp->phandle, "mac-address",
myaddr, sizeof myaddr)
< 0)
- panic("ofnattach: no max-address");
+ panic("ofnattach: no mac-address");
printf(": address %s\n", ether_sprintf(myaddr));
bcopy(of->sc_dev.dv_xname, ifp->if_xname, IFNAMSIZ);