From d67c43b3a9bd14530efcd2b51905aeaf4a25ad87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Thu, 10 Feb 2005 10:46:27 +0000 Subject: [PATCH] "device" and "nodevice" lines can actually specify more than one device (separated by commas), so add "devices" and "nodevices" as aliases. MFC after: 2 weeks --- usr.sbin/config/lang.l | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usr.sbin/config/lang.l b/usr.sbin/config/lang.l index f43322068d3a..39f3bd692379 100644 --- a/usr.sbin/config/lang.l +++ b/usr.sbin/config/lang.l @@ -63,7 +63,9 @@ struct kt { { "config", CONFIG }, { "cpu", CPU }, { "device", DEVICE }, + { "devices", DEVICE }, { "nodevice", NODEVICE }, + { "nodevices", NODEVICE }, { "env", ENV }, { "hints", HINTS }, { "ident", IDENT },