You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by cm...@apache.org on 2012/09/30 03:37:29 UTC

svn commit: r1391936 - in /subversion/branches/1.7.x: ./ subversion/libsvn_subr/cache-memcache.c

Author: cmpilato
Date: Sun Sep 30 01:37:29 2012
New Revision: 1391936

URL: http://svn.apache.org/viewvc?rev=1391936&view=rev
Log:
Merge a comment typo (obvious) fix from trunk (r1391935).

Modified:
    subversion/branches/1.7.x/   (props changed)
    subversion/branches/1.7.x/subversion/libsvn_subr/cache-memcache.c

Propchange: subversion/branches/1.7.x/
------------------------------------------------------------------------------
  Merged /subversion/trunk:r1391935

Modified: subversion/branches/1.7.x/subversion/libsvn_subr/cache-memcache.c
URL: http://svn.apache.org/viewvc/subversion/branches/1.7.x/subversion/libsvn_subr/cache-memcache.c?rev=1391936&r1=1391935&r2=1391936&view=diff
==============================================================================
--- subversion/branches/1.7.x/subversion/libsvn_subr/cache-memcache.c (original)
+++ subversion/branches/1.7.x/subversion/libsvn_subr/cache-memcache.c Sun Sep 30 01:37:29 2012
@@ -459,7 +459,8 @@ add_memcache_server(const char *name,
                                        0,  /* min connections */
                                        5,  /* soft max connections */
                                        10, /* hard max connections */
-                                       apr_time_from_sec(50), /* ttl (ms) */
+                                       /*  time to live (in microseconds) */
+                                       apr_time_from_sec(50),
                                        &server);
   if (apr_err != APR_SUCCESS)
     {