diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2015-12-02 09:20:42 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2015-12-02 09:20:42 +0000 |
commit | e6e49107f9b2dd93bafa7ec27bf7b3e1308ca6b6 (patch) | |
tree | 1ff02f9ba34254bba0cdec0f2d00b335a456e959 /usr.sbin | |
parent | 9abc22d2bb707f9938e6c8401da9bb5cea69bdce (diff) |
The earlier "nifs" change broke the configuration file; unbreak it by
adding a missing bit.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/vmmctl/parse.y | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/vmmctl/parse.y b/usr.sbin/vmmctl/parse.y index 67f1bf96741..e0ca82b6779 100644 --- a/usr.sbin/vmmctl/parse.y +++ b/usr.sbin/vmmctl/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.5 2015/12/01 20:52:44 halex Exp $ */ +/* $OpenBSD: parse.y,v 1.6 2015/12/02 09:20:41 reyk Exp $ */ /* * Copyright (c) 2007-2015 Reyk Floeter <reyk@openbsd.org> @@ -130,6 +130,7 @@ varset : STRING '=' STRING { main : VM STRING { memset(&res, 0, sizeof(res)); res.name = $2; + res.nifs = -1; } '{' optnl vm_opts_l '}' { if (res.disable) { warnx("%s:%d: vm \"%s\" disabled", |