pespin submitted this change.
server: vty: Fix writing config max-snaplen param
Change-Id: I2cb5e9f28e3d8ab0d35a37629968d0fb9460e843
---
M src/osmo_server_vty.c
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/osmo_server_vty.c b/src/osmo_server_vty.c
index 0a86633..dfe9857 100644
--- a/src/osmo_server_vty.c
+++ b/src/osmo_server_vty.c
@@ -119,7 +119,7 @@
else
vty_out(vty, " no max-file-size%s", VTY_NEWLINE);
if (pcap_server->max_snaplen != DEFAULT_SNAPLEN)
- vty_out(vty, " server max-snaplen %d%s", pcap_server->max_snaplen, VTY_NEWLINE);
+ vty_out(vty, " max-snaplen %d%s", pcap_server->max_snaplen, VTY_NEWLINE);
if (pcap_server->zmq_port > 0)
vty_out(vty, " zeromq-publisher %s %d%s",
pcap_server->zmq_ip, pcap_server->zmq_port, VTY_NEWLINE);
To view, visit change 39946. To unsubscribe, or for help writing mail filters, visit settings.