You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2012/09/27 22:07:15 UTC

svn commit: r1391193 - /apr/apr/trunk/memcache/apr_memcache.c

Author: trawick
Date: Thu Sep 27 20:07:15 2012
New Revision: 1391193

URL: http://svn.apache.org/viewvc?rev=1391193&view=rev
Log:
Revert r1390526; ttl is in microseconds

Modified:
    apr/apr/trunk/memcache/apr_memcache.c

Modified: apr/apr/trunk/memcache/apr_memcache.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/memcache/apr_memcache.c?rev=1391193&r1=1391192&r2=1391193&view=diff
==============================================================================
--- apr/apr/trunk/memcache/apr_memcache.c (original)
+++ apr/apr/trunk/memcache/apr_memcache.c Thu Sep 27 20:07:15 2012
@@ -414,7 +414,7 @@ APR_DECLARE(apr_status_t) apr_memcache_s
                                min,                     /* hard minimum */
                                smax,                    /* soft maximum */
                                max,                     /* hard maximum */
-                               apr_time_from_sec(ttl),  /* Time to live */
+                               ttl,                     /* Time to live */
                                mc_conn_construct,       /* Make a New Connection */
                                mc_conn_destruct,        /* Kill Old Connection */
                                server, np);