Repository: qpid-proton Updated Branches: refs/heads/master 75fc98fd7 -> c2c178c9c
PROTON-913: cannot use NULL as first param for pn_transport_log() Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/c2c178c9 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/c2c178c9 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/c2c178c9 Branch: refs/heads/master Commit: c2c178c9ce4bbad7b81e925a3f49f5e80fe60e62 Parents: 75fc98f Author: Gordon Sim <g...@redhat.com> Authored: Fri Jun 12 20:28:05 2015 +0100 Committer: Gordon Sim <g...@redhat.com> Committed: Fri Jun 12 20:28:05 2015 +0100 ---------------------------------------------------------------------- proton-c/src/ssl/openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/c2c178c9/proton-c/src/ssl/openssl.c ---------------------------------------------------------------------- diff --git a/proton-c/src/ssl/openssl.c b/proton-c/src/ssl/openssl.c index 52eac01..a5aee8b 100644 --- a/proton-c/src/ssl/openssl.c +++ b/proton-c/src/ssl/openssl.c @@ -730,7 +730,7 @@ int pn_ssl_domain_allow_unsecured_client(pn_ssl_domain_t *domain) { if (!domain) return -1; if (domain->mode != PN_SSL_MODE_SERVER) { - pn_transport_log(NULL, "Cannot permit unsecured clients - not a server."); + pn_transport_logf(NULL, "Cannot permit unsecured clients - not a server."); return -1; } domain->allow_unsecured = true; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org For additional commands, e-mail: commits-h...@qpid.apache.org