You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2014/03/27 21:39:43 UTC

svn commit: r1582467 - /subversion/trunk/subversion/libsvn_client/compat_providers.c

Author: rhuijben
Date: Thu Mar 27 20:39:43 2014
New Revision: 1582467

URL: http://svn.apache.org/r1582467
Log:
* subversion/libsvn_client/compat_providers.c
  (SVN_DEPRECATED): Define before including files to avoid warnings on using
    deprecated functions from these other deprecated functions.

Modified:
    subversion/trunk/subversion/libsvn_client/compat_providers.c

Modified: subversion/trunk/subversion/libsvn_client/compat_providers.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/compat_providers.c?rev=1582467&r1=1582466&r2=1582467&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/compat_providers.c (original)
+++ subversion/trunk/subversion/libsvn_client/compat_providers.c Thu Mar 27 20:39:43 2014
@@ -27,6 +27,10 @@
 
 /*** Includes. ***/
 
+/* We define this here to remove any further warnings about the usage of
+   deprecated functions in this file. */
+#define SVN_DEPRECATED
+
 #include "svn_auth.h"
 #include "svn_client.h"
 
@@ -62,15 +66,6 @@ void svn_client_get_simple_provider(svn_
   svn_auth_get_simple_provider2(provider, NULL, NULL, pool);
 }
 
-#if defined(WIN32) && !defined(__MINGW32__)
-void
-svn_client_get_windows_simple_provider(svn_auth_provider_object_t **provider,
-                                       apr_pool_t *pool)
-{
-  svn_auth_get_windows_simple_provider(provider, pool);
-}
-#endif /* WIN32 */
-
 void svn_client_get_username_provider(svn_auth_provider_object_t **provider,
                                       apr_pool_t *pool)
 {