You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kg...@apache.org on 2015/06/18 22:15:29 UTC

[24/50] [abbrv] qpid-proton git commit: PROTON-913: cannot use NULL as first param for pn_transport_log()

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/kgiusti-python3
Commit: c2c178c9ce4bbad7b81e925a3f49f5e80fe60e62
Parents: 75fc98f
Author: Gordon Sim <gs...@redhat.com>
Authored: Fri Jun 12 20:28:05 2015 +0100
Committer: Gordon Sim <gs...@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-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org