[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn trunk r17619: FAIL (win32 ra_local)

From: D.J. Heap <djheap_at_gmail.com>
Date: 2005-12-04 18:45:33 CET

On 12/4/05, svn-builder@shadyvale.net <svn-builder@shadyvale.net> wrote:
> Last 100 lines of the build log (full log attached):
>
> ECHO is off.

A couple of non_interactive flags in Win32 code where missed with the
simple provider changes in r17616. The patch below fixes it, but I
don't understand how TOASTER is building/passing tests?

DJ

Index: subversion/libsvn_subr/simple_providers.c
===================================================================
--- subversion/libsvn_subr/simple_providers.c (revision 17618)
+++ subversion/libsvn_subr/simple_providers.c (working copy)
@@ -608,7 +608,7 @@
       char *coded = apr_palloc (pool, apr_base64_encode_len (blobout.cbData));
       apr_base64_encode(coded, blobout.pbData, blobout.cbData);
       crypted = simple_password_set (creds, realmstring, username, coded,
- pool);
+ non_interactive, pool);
       LocalFree (blobout.pbData);
     }

@@ -644,7 +644,8 @@
   svn_boolean_t decrypted;
   char *in;

- if (!simple_password_get (&in, creds, realmstring, username, pool))
+ if (!simple_password_get (&in, creds, realmstring, username,
+ non_interactive, pool))
     return FALSE;

   if (!get_crypto_function ("CryptUnprotectData", &dll, &fn))

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sun Dec 4 18:48:03 2005

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.