artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6e92fa4
)
ospfd: fix whitespace error introduced in previous
author
tb
<tb@openbsd.org>
Thu, 22 Aug 2024 08:34:51 +0000
(08:34 +0000)
committer
tb
<tb@openbsd.org>
Thu, 22 Aug 2024 08:34:51 +0000
(08:34 +0000)
usr.sbin/ospfd/parse.y
patch
|
blob
|
history
diff --git
a/usr.sbin/ospfd/parse.y
b/usr.sbin/ospfd/parse.y
index
28523c2
..
dd74863
100644
(file)
--- a/
usr.sbin/ospfd/parse.y
+++ b/
usr.sbin/ospfd/parse.y
@@
-1,4
+1,4
@@
-/* $OpenBSD: parse.y,v 1.10
5 2024/08/21 15:16:56 florian
Exp $ */
+/* $OpenBSD: parse.y,v 1.10
6 2024/08/22 08:34:51 tb
Exp $ */
/*
* Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org>
@@
-620,7
+620,7
@@
areaid : NUMBER {
$$.s_addr = htonl($1);
}
| STRING {
- if (inet_pton(AF_INET, $1, &$$) != 1) {
+
if (inet_pton(AF_INET, $1, &$$) != 1) {
yyerror("error parsing area");
free($1);
YYERROR;