diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2023-04-21 10:47:08 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2023-04-21 10:47:08 +0000 |
commit | 534eeb35fa9409d4b9d162fd46cade30893b225e (patch) | |
tree | b5b8e60f6898b5cb5801ff7587ed1b4a19142753 /usr.sbin/bgpd/parse.y | |
parent | 73e948d9a7a43c0b299eff2cd52c24f5bbeb807c (diff) |
Missing space noticed by Pablo Mendez Hernandez
Diffstat (limited to 'usr.sbin/bgpd/parse.y')
-rw-r--r-- | usr.sbin/bgpd/parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/parse.y b/usr.sbin/bgpd/parse.y index 1b851148a83..516c19c07cb 100644 --- a/usr.sbin/bgpd/parse.y +++ b/usr.sbin/bgpd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.450 2023/04/21 09:28:14 claudio Exp $ */ +/* $OpenBSD: parse.y,v 1.451 2023/04/21 10:47:07 claudio Exp $ */ /* * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -5590,7 +5590,7 @@ component_finish(int type, uint8_t *data, int len) break; } - i= 0; + i = 0; do { last = data + i; i += FLOWSPEC_OP_LEN(*last) + 1; |