You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2010/09/23 10:54:16 UTC

svn commit: r1000359 - /subversion/branches/atomic-revprop/subversion/tests/cmdline/atomic-ra-revprop-change.c

Author: danielsh
Date: Thu Sep 23 08:54:16 2010
New Revision: 1000359

URL: http://svn.apache.org/viewvc?rev=1000359&view=rev
Log:
Let the race to r2000000 begin.

* subversion/tests/cmdline/atomic-ra-revprop-change.c
  (construct_auth_baton):
    Match the allocated size to the number of elements we'll be requiring.

Modified:
    subversion/branches/atomic-revprop/subversion/tests/cmdline/atomic-ra-revprop-change.c

Modified: subversion/branches/atomic-revprop/subversion/tests/cmdline/atomic-ra-revprop-change.c
URL: http://svn.apache.org/viewvc/subversion/branches/atomic-revprop/subversion/tests/cmdline/atomic-ra-revprop-change.c?rev=1000359&r1=1000358&r2=1000359&view=diff
==============================================================================
--- subversion/branches/atomic-revprop/subversion/tests/cmdline/atomic-ra-revprop-change.c (original)
+++ subversion/branches/atomic-revprop/subversion/tests/cmdline/atomic-ra-revprop-change.c Thu Sep 23 08:54:16 2010
@@ -91,7 +91,7 @@ construct_auth_baton(svn_auth_baton_t **
   svn_auth_baton_t *auth_baton;
 
   /* A bit of dancing just to pass jrandom:rayjandom. */
-  providers = apr_array_make(pool, 1, sizeof(svn_auth_provider_object_t *)),
+  providers = apr_array_make(pool, 2, sizeof(svn_auth_provider_object_t *)),
   svn_auth_get_simple_prompt_provider(&simple_provider,
                                       aborting_simple_prompt_func, NULL,
                                       0, pool);