summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2003-10-04 18:43:21 +0000
committerimp <imp@FreeBSD.org>2003-10-04 18:43:21 +0000
commita59ed651525a2d8b46fbb0704a1e6a4a4a78bb06 (patch)
tree817aeceaa2aabd57814a67a1e6678c5bf9cb1650 /usr.sbin
parent786346d1917cc67d62a272298bdb488064a183c3 (diff)
downloadFreeBSD-src-a59ed651525a2d8b46fbb0704a1e6a4a4a78bb06.zip
FreeBSD-src-a59ed651525a2d8b46fbb0704a1e6a4a4a78bb06.tar.gz
Ooops. Committed sin number 1: updating the code w/o updating the comments.
Update the comments too.
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/pccard/pccardd/file.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/pccard/pccardd/file.c b/usr.sbin/pccard/pccardd/file.c
index d7482da..93ad066 100644
--- a/usr.sbin/pccard/pccardd/file.c
+++ b/usr.sbin/pccard/pccardd/file.c
@@ -664,7 +664,7 @@ memblk_tok(int force)
/*
* IRQ token. Must be number > 0 && < 16.
- * If force is set, IRQ must exist, and can also be '?'.
+ * If force is set, IRQ must exist, and can also be '?' or 'any'.
*/
static int
irq_tok(int force)
@@ -678,6 +678,7 @@ irq_tok(int force)
if (strcmp("?", next_tok()) == 0 && force)
return (0);
+ /* old PAO syntax -- people are still using it! */
if (strcmp("any", next_tok()) == 0 && force)
return (0);
pusht = 1;
OpenPOWER on IntegriCloud