artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1807de0
)
Add missing semicolon at the end of the listen_udptcp rule
author
gerhard
<gerhard@openbsd.org>
Wed, 20 Oct 2021 16:00:47 +0000
(16:00 +0000)
committer
gerhard
<gerhard@openbsd.org>
Wed, 20 Oct 2021 16:00:47 +0000
(16:00 +0000)
ok otto@
usr.sbin/snmpd/parse.y
patch
|
blob
|
history
diff --git
a/usr.sbin/snmpd/parse.y
b/usr.sbin/snmpd/parse.y
index
c19edf8
..
f55d523
100644
(file)
--- a/
usr.sbin/snmpd/parse.y
+++ b/
usr.sbin/snmpd/parse.y
@@
-1,4
+1,4
@@
-/* $OpenBSD: parse.y,v 1.7
0 2021/10/15 15:01:29 naddy Exp $
*/
+/* $OpenBSD: parse.y,v 1.7
1 2021/10/20 16:00:47 gerhard Exp $
*/
/*
* Copyright (c) 2007, 2008, 2012 Reyk Floeter <reyk@openbsd.org>
@@
-350,6
+350,7
@@
listen_udptcp : listenproto STRING port listenflags {
free($2);
free($3);
}
+ ;
port : /* empty */ {
$$ = NULL;