pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-pcap/+/39946?usp=email )
Change subject: server: vty: Fix writing config max-snaplent param
......................................................................
server: vty: Fix writing config max-snaplent param
Change-Id: I2cb5e9f28e3d8ab0d35a37629968d0fb9460e843
---
M src/osmo_server_vty.c
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-pcap refs/changes/46/39946/1
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
https://gerrit.osmocom.org/c/osmo-pcap/+/39946?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: osmo-pcap
Gerrit-Branch: master
Gerrit-Change-Id: I2cb5e9f28e3d8ab0d35a37629968d0fb9460e843
Gerrit-Change-Number: 39946
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>