mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
netipsec: Fix minor style nit
Coverity points out that 'continue' is equivalent to 'break' in a do {}
while(false) loop.
Reported by: Coverity
CID: 1354983
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
parent
a60711fd00
commit
ab11d379fa
1 changed files with 1 additions and 1 deletions
|
|
@ -351,7 +351,7 @@ do { \
|
|||
if ((head) != (sav)) { \
|
||||
ipseclog((LOG_DEBUG, "%s: state mismatched (TREE=%d SA=%d)\n", \
|
||||
(name), (head), (sav))); \
|
||||
continue; \
|
||||
break; \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue