diff options
author | imp <imp@FreeBSD.org> | 2003-10-04 18:40:36 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2003-10-04 18:40:36 +0000 |
commit | 786346d1917cc67d62a272298bdb488064a183c3 (patch) | |
tree | 1b8f1703582ae8383ee9563ed530c4233c16f489 /usr.sbin/pccard | |
parent | 55547647ecb82bcf7ff95e5f63008eba907da828 (diff) | |
download | FreeBSD-src-786346d1917cc67d62a272298bdb488064a183c3.zip FreeBSD-src-786346d1917cc67d62a272298bdb488064a183c3.tar.gz |
I've been burned about half a dozen times by the old PAO syntax for
'any' interrupt. There's no reason not to be liberal here and accept
the PAO syntax.
MFC After: 2 weeks
Diffstat (limited to 'usr.sbin/pccard')
-rw-r--r-- | usr.sbin/pccard/pccardd/file.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.sbin/pccard/pccardd/file.c b/usr.sbin/pccard/pccardd/file.c index cfce668..d7482da 100644 --- a/usr.sbin/pccard/pccardd/file.c +++ b/usr.sbin/pccard/pccardd/file.c @@ -678,6 +678,8 @@ irq_tok(int force) if (strcmp("?", next_tok()) == 0 && force) return (0); + if (strcmp("any", next_tok()) == 0 && force) + return (0); pusht = 1; i = num_tok(); if (i > 0 && i < 16) |