artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ddebc6f
)
When parsing AS numbers set both as_min and as_max to the parsed value.
author
claudio
<claudio@openbsd.org>
Fri, 7 Sep 2018 05:47:02 +0000
(
05:47
+0000)
committer
claudio
<claudio@openbsd.org>
Fri, 7 Sep 2018 05:47:02 +0000
(
05:47
+0000)
Not strictly needed but better to have both initialized.
usr.sbin/bgpctl/parser.c
patch
|
blob
|
history
diff --git
a/usr.sbin/bgpctl/parser.c
b/usr.sbin/bgpctl/parser.c
index
8db23bc
..
7f79c82
100644
(file)
--- a/
usr.sbin/bgpctl/parser.c
+++ b/
usr.sbin/bgpctl/parser.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: parser.c,v 1.8
4 2018/09/05 09:50:43
claudio Exp $ */
+/* $OpenBSD: parser.c,v 1.8
5 2018/09/07 05:47:02
claudio Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@
-616,6
+616,7
@@
match_token(int *argc, char **argv[], const struct token table[])
break;
case ASNUM:
if (parse_asnum(word, wordlen, &res.as.as_min)) {
+ res.as.as_max = res.as.as_min;
match++;
t = &table[i];
}