diff options
author | 2019-01-29 18:55:34 +0000 | |
---|---|---|
committer | 2019-01-29 18:55:34 +0000 | |
commit | 9be5752e0e361705a5fa8ab3882dbd79925bfa9a (patch) | |
tree | 33036292a5a374a364c527e32e2cb3b53f95db4d | |
parent | Discard unwanted mouse events from the keyboard input channel when we're (diff) | |
download | wireguard-openbsd-9be5752e0e361705a5fa8ab3882dbd79925bfa9a.tar.xz wireguard-openbsd-9be5752e0e361705a5fa8ab3882dbd79925bfa9a.zip |
nl in forwarder line is optional, makes the grammar conform more to manual
ok florian@
-rw-r--r-- | sbin/unwind/uw_parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/unwind/uw_parse.y b/sbin/unwind/uw_parse.y index 24d7863af8e..4c2966da1ac 100644 --- a/sbin/unwind/uw_parse.y +++ b/sbin/unwind/uw_parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: uw_parse.y,v 1.3 2019/01/27 12:40:54 florian Exp $ */ +/* $OpenBSD: uw_parse.y,v 1.4 2019/01/29 18:55:34 otto Exp $ */ /* * Copyright (c) 2018 Florian Obser <florian@openbsd.org> @@ -194,7 +194,7 @@ forwarder_block : '{' optnl forwarderopts_l '}' | forwarderoptsl ; -forwarderopts_l : forwarderopts_l forwarderoptsl nl +forwarderopts_l : forwarderopts_l forwarderoptsl optnl | forwarderoptsl optnl forwarderoptsl : STRING { |