You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by gm...@apache.org on 2020/08/11 17:15:25 UTC

[qpid-dispatch] branch dev-protocol-adaptors updated: DISPATCH-1744: Fixed minor error in field name

This is an automated email from the ASF dual-hosted git repository.

gmurthy pushed a commit to branch dev-protocol-adaptors
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git


The following commit(s) were added to refs/heads/dev-protocol-adaptors by this push:
     new a6519cf  DISPATCH-1744: Fixed minor error in field name
a6519cf is described below

commit a6519cf82dc5f084028567d34d99813f19183816
Author: Ganesh Murthy <gm...@apache.org>
AuthorDate: Tue Aug 11 13:14:56 2020 -0400

    DISPATCH-1744: Fixed minor error in field name
---
 src/adaptors/http_common.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/adaptors/http_common.c b/src/adaptors/http_common.c
index b3a6fc9..c650875 100644
--- a/src/adaptors/http_common.c
+++ b/src/adaptors/http_common.c
@@ -41,7 +41,7 @@ static qd_error_t load_bridge_config(qd_dispatch_t *qd, qd_http_bridge_config_t
     config->host    = qd_entity_get_string(entity, "host");            CHECK();
     config->port    = qd_entity_get_string(entity, "port");            CHECK();
     config->address = qd_entity_get_string(entity, "address");         CHECK();
-    version_str     = qd_entity_get_string(entity, "protcolVersion");  CHECK();
+    version_str     = qd_entity_get_string(entity, "protocolVersion");  CHECK();
 
     if (strncmp(version_str, "HTTP/1", 6) == 0) {
         config->version = VERSION_HTTP1;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org