svn commit: r197990 - user/des/svnsup/src/distill

Dag-Erling Smorgrav des at FreeBSD.org
Mon Oct 12 16:55:19 UTC 2009


Author: des
Date: Mon Oct 12 16:55:19 2009
New Revision: 197990
URL: http://svn.freebsd.org/changeset/base/197990

Log:
  svn_client_get_username_prompt_provider() is deprecated, use
  svn_auth_get_username_prompt_provider() instead.

Modified:
  user/des/svnsup/src/distill/distill.c

Modified: user/des/svnsup/src/distill/distill.c
==============================================================================
--- user/des/svnsup/src/distill/distill.c	Mon Oct 12 16:53:49 2009	(r197989)
+++ user/des/svnsup/src/distill/distill.c	Mon Oct 12 16:55:19 2009	(r197990)
@@ -57,7 +57,7 @@ distill(const char *url, unsigned long r
 	/* set up our authentication system */
 	/* XXX check for errors */
 	auth_providers = apr_array_make(pool, 1, sizeof auth_provider);
-	svn_client_get_username_prompt_provider(&auth_provider,
+	svn_auth_get_username_prompt_provider(&auth_provider,
 	    username_prompt_callback, NULL, 0, pool);
 	APR_ARRAY_PUSH(auth_providers, svn_auth_provider_object_t *) =
 	    auth_provider;


More information about the svn-src-user mailing list