summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2001-06-25 18:07:36 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2001-06-25 18:07:36 +0000
commit3200c2d688f9ae0173daaee010911e064bb77501 (patch)
treef06521aaf8179a6ff44d7f91e36c5ad618e47fb6 /sbin
parent4a4a95630baf72eaa83c2b55cab1590088413386 (diff)
Identify the Apple Airport card.
ok, millert
Diffstat (limited to 'sbin')
-rw-r--r--sbin/wicontrol/wicontrol.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/sbin/wicontrol/wicontrol.c b/sbin/wicontrol/wicontrol.c
index 54c7ce14e7f..5de0d1497cb 100644
--- a/sbin/wicontrol/wicontrol.c
+++ b/sbin/wicontrol/wicontrol.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: wicontrol.c,v 1.17 2001/06/24 22:24:00 provos Exp $ */
+/* $OpenBSD: wicontrol.c,v 1.18 2001/06/25 18:07:35 drahn Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
@@ -67,7 +67,7 @@
static const char copyright[] = "@(#) Copyright (c) 1997, 1998, 1999\
Bill Paul. All rights reserved.";
static const char rcsid[] =
- "@(#) $OpenBSD: wicontrol.c,v 1.17 2001/06/24 22:24:00 provos Exp $";
+ "@(#) $OpenBSD: wicontrol.c,v 1.18 2001/06/25 18:07:35 drahn Exp $";
#endif
static void wi_getval __P((char *, struct wi_req *));
@@ -400,6 +400,9 @@ wi_printcardid(wreq, chip_id)
case 1:
chip_name = "Lucent";
break;
+ case 5:
+ chip_name = "Airport";
+ break;
default:
asprintf(&chip_name, "Unknown (%d)", chip_id);
break;