diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 2002-06-09 03:14:19 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 2002-06-09 03:14:19 +0000 |
commit | ccdcaed6c36359c5304b860b70682f290dc347b2 (patch) | |
tree | 01252ff1c7131e9290bbdb78ea60bcea4f1f0be0 /sys/dev/eisa/if_fea.c | |
parent | 8d960a3582efa749fdaa10a8b161486c0d7d34d4 (diff) |
a step towards consistancy; in general:
'struct arpcom foo' -> 'struct arpcom sc_arpcom'
ok itojun@
Diffstat (limited to 'sys/dev/eisa/if_fea.c')
-rw-r--r-- | sys/dev/eisa/if_fea.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/eisa/if_fea.c b/sys/dev/eisa/if_fea.c index cef25bbc456..21458f328eb 100644 --- a/sys/dev/eisa/if_fea.c +++ b/sys/dev/eisa/if_fea.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_fea.c,v 1.14 2002/06/02 22:49:59 deraadt Exp $ */ +/* $OpenBSD: if_fea.c,v 1.15 2002/06/09 03:14:18 todd Exp $ */ /* $NetBSD: if_fea.c,v 1.9 1996/10/21 22:31:05 thorpej Exp $ */ /*- @@ -224,7 +224,7 @@ pdq_eisa_attach(parent, self, aux) printf(": interrupting at %s\n", intrstr); bcopy((caddr_t) sc->sc_pdq->pdq_hwaddr.lanaddr_bytes, - sc->sc_ac.ac_enaddr, 6); + sc->sc_arpcom.ac_enaddr, 6); pdq_ifattach(sc, NULL); |