Author: rhuijben Date: Tue Nov 24 09:18:38 2015 New Revision: 1716088 URL: http://svn.apache.org/viewvc?rev=1716088&view=rev Log: * config_store.c * incoming.c Print client ptr as well.
Modified: serf/branches/pump-investigate/config_store.c serf/branches/pump-investigate/incoming.c Modified: serf/branches/pump-investigate/config_store.c URL: http://svn.apache.org/viewvc/serf/branches/pump-investigate/config_store.c?rev=1716088&r1=1716087&r2=1716088&view=diff ============================================================================== --- serf/branches/pump-investigate/config_store.c (original) +++ serf/branches/pump-investigate/config_store.c Tue Nov 24 09:18:38 2015 @@ -188,7 +188,7 @@ apr_status_t serf__config_store_get_clie { serf__config_store_t *config_store = &ctx->config_store; - fprintf(stderr, "Getting config (client pool=%p, out pool=%p)\n", client->pool, out_pool); + fprintf(stderr, "Getting config (client pool=%p, out pool=%p), client=%p\n", client->pool, out_pool, client); serf_config_t *cfg = apr_pcalloc(out_pool, sizeof(serf_config_t)); cfg->ctx_pool = ctx->pool; Modified: serf/branches/pump-investigate/incoming.c URL: http://svn.apache.org/viewvc/serf/branches/pump-investigate/incoming.c?rev=1716088&r1=1716087&r2=1716088&view=diff ============================================================================== --- serf/branches/pump-investigate/incoming.c (original) +++ serf/branches/pump-investigate/incoming.c Tue Nov 24 09:18:38 2015 @@ -712,7 +712,7 @@ apr_status_t serf_incoming_create2( ic->closed = closed; ic->closed_baton = closed_baton; - fprintf(stderr, "Create config in clientpool %p / stored pool = %p\n", ic_pool, ic->pool); + fprintf(stderr, "Create config in clientpool %p / stored pool = %p / client = %p\n", ic_pool, ic->pool, ic); /* Store the connection specific info in the configuration store */ rv = serf__config_store_get_client_config(ctx, ic, &config, ic_pool);