summaryrefslogtreecommitdiffstats
path: root/extras/vom/vom/neighbour_cmds.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'extras/vom/vom/neighbour_cmds.cpp')
-rw-r--r--extras/vom/vom/neighbour_cmds.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/extras/vom/vom/neighbour_cmds.cpp b/extras/vom/vom/neighbour_cmds.cpp
index 2f3c200d5fb..63534f3dd94 100644
--- a/extras/vom/vom/neighbour_cmds.cpp
+++ b/extras/vom/vom/neighbour_cmds.cpp
@@ -151,7 +151,11 @@ dump_cmd::issue(connection& con)
std::string
dump_cmd::to_string() const
{
- return ("neighbour-dump");
+ std::ostringstream s;
+
+ s << "neighbour-dump: " << m_itf.to_string() << " " << m_proto.to_string();
+
+ return (s.str());
}
} // namespace neighbour_cmds
} // namespace vom