From 786346d1917cc67d62a272298bdb488064a183c3 Mon Sep 17 00:00:00 2001 From: imp Date: Sat, 4 Oct 2003 18:40:36 +0000 Subject: 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 --- usr.sbin/pccard/pccardd/file.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'usr.sbin') 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) -- cgit v1.1