Author: rhuijben
Date: Sun Nov 15 12:23:08 2015
New Revision: 1714445
URL: http://svn.apache.org/viewvc?rev=1714445&view=rev
Log:
* config_store.c
(serf__config_store_init): Fix bad return value.
Modified:
serf/trunk/config_store.c
Modified: serf/trunk/config_store.c
URL:
http://svn.apache.org/viewvc/serf/trunk/config_store.c?rev=1714445&r1=1714444&r2=1714445&view=diff
==============================================================================
--- serf/trunk/config_store.c (original)
+++ serf/trunk/config_store.c Sun Nov 15 12:23:08 2015
@@ -90,7 +90,7 @@ apr_status_t serf__config_store_init(ser
ctx->config_store.global_per_host = apr_hash_make(pool);
ctx->config_store.global_per_conn = apr_hash_make(pool);
- return APR_ENOTIMPL;
+ return APR_SUCCESS;
}
/* Defines the key to use for per host settings */