summaryrefslogtreecommitdiff
path: root/usr.sbin/vmd/parse.y
diff options
context:
space:
mode:
authorReyk Floeter <reyk@cvs.openbsd.org>2017-05-03 08:21:58 +0000
committerReyk Floeter <reyk@cvs.openbsd.org>2017-05-03 08:21:58 +0000
commit61fe2120208b9aff57b06e7926cf0749ed0d930f (patch)
tree02e28c6b2ca65a675386f5dd050c471683074a51 /usr.sbin/vmd/parse.y
parent1379a76e13b4827939c41e7d3c282375897e277b (diff)
Sort parser tokens, no functional change
Diffstat (limited to 'usr.sbin/vmd/parse.y')
-rw-r--r--usr.sbin/vmd/parse.y14
1 files changed, 7 insertions, 7 deletions
diff --git a/usr.sbin/vmd/parse.y b/usr.sbin/vmd/parse.y
index 440f7ebdf2d..d400d4eb242 100644
--- a/usr.sbin/vmd/parse.y
+++ b/usr.sbin/vmd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.27 2017/04/21 11:02:10 reyk Exp $ */
+/* $OpenBSD: parse.y,v 1.28 2017/05/03 08:21:57 reyk Exp $ */
/*
* Copyright (c) 2007-2016 Reyk Floeter <reyk@openbsd.org>
@@ -115,18 +115,18 @@ typedef struct {
%token INCLUDE ERROR
-%token ADD DISK DOWN GROUP INTERFACE NIFS PATH SIZE SWITCH UP VMID
-%token ENABLE DISABLE VM BOOT LLADDR MEMORY OWNER LOCKED LOCAL PREFIX
+%token ADD BOOT DISABLE DISK DOWN ENABLE GROUP INTERFACE LLADDR LOCAL LOCKED
+%token MEMORY NIFS OWNER PATH PREFIX SIZE SWITCH UP VM VMID
+%token <v.number> NUMBER
%token <v.string> STRING
-%token <v.number> NUMBER
+%type <v.lladdr> lladdr
%type <v.number> disable
%type <v.number> local
%type <v.number> locked
%type <v.number> updown
-%type <v.lladdr> lladdr
-%type <v.string> string
-%type <v.string> optstring
%type <v.owner> owner_id
+%type <v.string> optstring
+%type <v.string> string
%%