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/08/13 21:49:23 UTC

svn commit: r1372569 - /subversion/branches/master-passphrase/subversion/libsvn_subr/masterpass_providers.c

Author: cmpilato
Date: Mon Aug 13 19:49:23 2012
New Revision: 1372569

URL: http://svn.apache.org/viewvc?rev=1372569&view=rev
Log:
On the 'master-passphrase' branch: also add KDE wallet master
passphrase provider when platform-specific providers are requested.

* subversion/libsvn_subr/masterpass_providers.c
  (svn_auth_get_platform_specific_master_passphrase_providers): Enable
    kwallet master passphrase provider addition logic.

Modified:
    subversion/branches/master-passphrase/subversion/libsvn_subr/masterpass_providers.c

Modified: subversion/branches/master-passphrase/subversion/libsvn_subr/masterpass_providers.c
URL: http://svn.apache.org/viewvc/subversion/branches/master-passphrase/subversion/libsvn_subr/masterpass_providers.c?rev=1372569&r1=1372568&r2=1372569&view=diff
==============================================================================
--- subversion/branches/master-passphrase/subversion/libsvn_subr/masterpass_providers.c (original)
+++ subversion/branches/master-passphrase/subversion/libsvn_subr/masterpass_providers.c Mon Aug 13 19:49:23 2012
@@ -279,10 +279,8 @@ svn_auth_get_platform_specific_master_pa
       /* KWallet */
       if (apr_strnatcmp(password_store, "kwallet") == 0)
         {
-#if 0
           SVN_ERR(get_provider(&provider, "kwallet", pool));
           SVN__MAYBE_ADD_PROVIDER(*providers, provider);
-#endif
           continue;
         }