Author: rhuijben
Date: Tue Nov 24 09:24:52 2015
New Revision: 1716089

URL: http://svn.apache.org/viewvc?rev=1716089&view=rev
Log:
* config_store.c
* incoming.c
  Print size of client struct to make 100% sure this looks at the same thing.

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=1716089&r1=1716088&r2=1716089&view=diff
==============================================================================
--- serf/branches/pump-investigate/config_store.c (original)
+++ serf/branches/pump-investigate/config_store.c Tue Nov 24 09:24:52 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), 
client=%p\n", client->pool, out_pool, client);
+    fprintf(stderr, "Getting config (client pool=%p, out pool=%p), client=%p, 
size=%d\n", client->pool, out_pool, client, (int)sizeof(*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=1716089&r1=1716088&r2=1716089&view=diff
==============================================================================
--- serf/branches/pump-investigate/incoming.c (original)
+++ serf/branches/pump-investigate/incoming.c Tue Nov 24 09:24:52 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 / 
client = %p\n", ic_pool, ic->pool, ic);
+    fprintf(stderr, "Create config in clientpool %p / stored pool = %p / 
client = %p, size=%d\n", ic_pool, ic->pool, ic, (int)sizeof(*ic));
 
     /* Store the connection specific info in the configuration store */
     rv = serf__config_store_get_client_config(ctx, ic, &config, ic_pool);


Reply via email to