diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2023-04-19 07:07:59 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2023-04-19 07:07:59 +0000 |
commit | db86a82155285f622e6f2518cb4a72cf971f915a (patch) | |
tree | 567e7bc76b0437ec04dc6e0e91604ab8931a6c35 /usr.sbin/bgpd | |
parent | abc3f3a4152c7bfe0cd6f53eb6e27140160e9bfc (diff) |
bad indents
Diffstat (limited to 'usr.sbin/bgpd')
-rw-r--r-- | usr.sbin/bgpd/flowspec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/bgpd/flowspec.c b/usr.sbin/bgpd/flowspec.c index 7ce063f1709..b0ae8390e48 100644 --- a/usr.sbin/bgpd/flowspec.c +++ b/usr.sbin/bgpd/flowspec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: flowspec.c,v 1.2 2023/04/17 20:54:57 claudio Exp $ */ +/* $OpenBSD: flowspec.c,v 1.3 2023/04/19 07:07:58 claudio Exp $ */ /* * Copyright (c) 2023 Claudio Jeker <claudio@openbsd.org> @@ -228,10 +228,10 @@ flowspec_cmp(const uint8_t *a, int alen, const uint8_t *b, int blen, int is_v6) case FLOWSPEC_TYPE_SOURCE: if (!is_v6) { cmp = flowspec_cmp_prefix4(a, acomplen, - b, bcomplen); + b, bcomplen); } else { cmp = flowspec_cmp_prefix6(a, acomplen, - b, bcomplen); + b, bcomplen); } if (cmp != 0) return cmp; |