From 9b499354eea234cfbadeb0a264a26a0f18c59e67 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Fri, 7 Nov 2014 20:38:36 +0100 Subject: [PATCH] Fixed MistOutHTTP interface selection command line parameter. --- src/output/output_http.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/output/output_http.cpp b/src/output/output_http.cpp index 6ca6f7ce..231274e6 100644 --- a/src/output/output_http.cpp +++ b/src/output/output_http.cpp @@ -25,7 +25,7 @@ namespace Mist { capa["forward"]["ip"]["type"] = "str"; capa["forward"]["ip"]["option"] = "--ip"; cfg->addOption("streamname", JSON::fromString("{\"arg\":\"string\",\"short\":\"s\",\"long\":\"stream\",\"help\":\"The name of the stream that this connector will transmit.\"}")); - cfg->addOption("ip", JSON::fromString("{\"arg\":\"string\",\"short\":\"i\",\"long\":\"ip\",\"help\":\"Ip addr of connection.\"}")); + cfg->addOption("ip", JSON::fromString("{\"arg\":\"string\",\"short\":\"I\",\"long\":\"ip\",\"help\":\"IP address of connection on stdio.\"}")); cfg->addBasicConnectorOptions(capa); config = cfg; }