summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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