Repository: qpid-dispatch Updated Branches: refs/heads/master 037904579 -> 468b38d28
DISPATCH-621 - Thanks Adel Boutros - Add missing string.h include for Solaris compiler Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/468b38d2 Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/468b38d2 Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/468b38d2 Branch: refs/heads/master Commit: 468b38d2882d2c56fadef3eec12d16bbb9a8cb31 Parents: 0379045 Author: Ganesh Murthy <[email protected]> Authored: Fri Mar 3 17:07:45 2017 -0500 Committer: Ganesh Murthy <[email protected]> Committed: Fri Mar 3 17:07:45 2017 -0500 ---------------------------------------------------------------------- src/router_core/connections.c | 1 + src/router_core/forwarder.c | 1 + src/router_core/router_core.c | 1 + src/router_core/terminus.c | 1 + 4 files changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/468b38d2/src/router_core/connections.c ---------------------------------------------------------------------- diff --git a/src/router_core/connections.c b/src/router_core/connections.c index 96cbd52..8c95f9f 100644 --- a/src/router_core/connections.c +++ b/src/router_core/connections.c @@ -21,6 +21,7 @@ #include "route_control.h" #include <qpid/dispatch/amqp.h> #include <stdio.h> +#include <strings.h> #include "router_core_private.h" static void qdr_connection_opened_CT(qdr_core_t *core, qdr_action_t *action, bool discard); http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/468b38d2/src/router_core/forwarder.c ---------------------------------------------------------------------- diff --git a/src/router_core/forwarder.c b/src/router_core/forwarder.c index 1b48d88..debce01 100644 --- a/src/router_core/forwarder.c +++ b/src/router_core/forwarder.c @@ -20,6 +20,7 @@ #include "router_core_private.h" #include <qpid/dispatch/amqp.h> #include <stdio.h> +#include <strings.h> // // NOTE: If the in_delivery argument is NULL, the resulting out deliveries http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/468b38d2/src/router_core/router_core.c ---------------------------------------------------------------------- diff --git a/src/router_core/router_core.c b/src/router_core/router_core.c index 2227cfb..ef73553 100644 --- a/src/router_core/router_core.c +++ b/src/router_core/router_core.c @@ -19,6 +19,7 @@ #include "router_core_private.h" #include <stdio.h> +#include <strings.h> ALLOC_DEFINE(qdr_address_t); ALLOC_DEFINE(qdr_address_config_t); http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/468b38d2/src/router_core/terminus.c ---------------------------------------------------------------------- diff --git a/src/router_core/terminus.c b/src/router_core/terminus.c index 5564cc4..a6db7ea 100644 --- a/src/router_core/terminus.c +++ b/src/router_core/terminus.c @@ -18,6 +18,7 @@ */ #include "router_core_private.h" +#include <strings.h> struct qdr_terminus_t { qdr_field_t *address; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
