diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/vpp-api/vom/gbp_endpoint_cmds.cpp | 2 | ||||
-rw-r--r-- | src/vpp-api/vom/l2_emulation.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/vpp-api/vom/gbp_endpoint_cmds.cpp b/src/vpp-api/vom/gbp_endpoint_cmds.cpp index 5a8247a4250..4f85b7eff4e 100644 --- a/src/vpp-api/vom/gbp_endpoint_cmds.cpp +++ b/src/vpp-api/vom/gbp_endpoint_cmds.cpp @@ -103,7 +103,7 @@ std::string delete_cmd::to_string() const { std::ostringstream s; - s << "gbp-endpoint-create: " << m_hw_item.to_string() << " itf:" << m_itf + s << "gbp-endpoint-delete: " << m_hw_item.to_string() << " itf:" << m_itf << " ip:" << m_ip_addr.to_string(); return (s.str()); diff --git a/src/vpp-api/vom/l2_emulation.cpp b/src/vpp-api/vom/l2_emulation.cpp index 75e3bffb2ec..4eedd95e1fc 100644 --- a/src/vpp-api/vom/l2_emulation.cpp +++ b/src/vpp-api/vom/l2_emulation.cpp @@ -62,7 +62,7 @@ l2_emulation::sweep() { if (m_emulation && handle_t::INVALID != m_itf->handle()) { HW::enqueue( - new l2_emulation_cmds::enable_cmd(m_emulation, m_itf->handle())); + new l2_emulation_cmds::disable_cmd(m_emulation, m_itf->handle())); } // no need to undo the VTR operation. |