summaryrefslogtreecommitdiffstats
path: root/extras/vom/vom/gbp_contract.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'extras/vom/vom/gbp_contract.cpp')
-rw-r--r--extras/vom/vom/gbp_contract.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/extras/vom/vom/gbp_contract.cpp b/extras/vom/vom/gbp_contract.cpp
index f372acf2e4c..0ef50ad5535 100644
--- a/extras/vom/vom/gbp_contract.cpp
+++ b/extras/vom/vom/gbp_contract.cpp
@@ -101,7 +101,10 @@ gbp_contract::to_string() const
++it;
}
}
- s << "]";
+ s << "[ethertype:";
+ for (auto e : m_allowed_ethertypes)
+ s << " " << e;
+ s << "]]";
return (s.str());
}