summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--packet/bgp/bgp.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/packet/bgp/bgp.go b/packet/bgp/bgp.go
index 8c4400ba..bf90cfc6 100644
--- a/packet/bgp/bgp.go
+++ b/packet/bgp/bgp.go
@@ -3772,12 +3772,12 @@ func formatProto(op int, value int) string {
func formatTCPFlag(op int, value int) string {
var retString string
- if op&BITMASK_FLAG_OP_MATCH > 0 {
- retString = fmt.Sprintf("%s%s", retString, BitmaskFlagOpNameMap[BITMASK_FLAG_OP_MATCH])
- }
if op&BITMASK_FLAG_OP_NOT > 0 {
retString = fmt.Sprintf("%s%s", retString, BitmaskFlagOpNameMap[BITMASK_FLAG_OP_NOT])
}
+ if op&BITMASK_FLAG_OP_MATCH > 0 {
+ retString = fmt.Sprintf("%s%s", retString, BitmaskFlagOpNameMap[BITMASK_FLAG_OP_MATCH])
+ }
// Prepare a sorted list of flags because map iterations does not happen
// in a consistent order in Golang.
@@ -3802,12 +3802,12 @@ func formatTCPFlag(op int, value int) string {
func formatFragment(op int, value int) string {
var retString string
- if op&BITMASK_FLAG_OP_MATCH > 0 {
- retString = fmt.Sprintf("%s%s", retString, BitmaskFlagOpNameMap[BITMASK_FLAG_OP_MATCH])
- }
if op&BITMASK_FLAG_OP_NOT > 0 {
retString = fmt.Sprintf("%s%s", retString, BitmaskFlagOpNameMap[BITMASK_FLAG_OP_NOT])
}
+ if op&BITMASK_FLAG_OP_MATCH > 0 {
+ retString = fmt.Sprintf("%s%s", retString, BitmaskFlagOpNameMap[BITMASK_FLAG_OP_MATCH])
+ }
// Prepare a sorted list of flags because map iterations does not happen
// in a consistent order in Golang.