Author: cmpilato
Date: Wed Jul 25 15:15:06 2012
New Revision: 1365618

URL: http://svn.apache.org/viewvc?rev=1365618&view=rev
Log:
On the 'master-passphrase' branch:

* subversion/libsvn_subr/pathetic_auth_store.c
  (pathetic_store_open): Improve error message.

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

Modified: 
subversion/branches/master-passphrase/subversion/libsvn_subr/pathetic_auth_store.c
URL: 
http://svn.apache.org/viewvc/subversion/branches/master-passphrase/subversion/libsvn_subr/pathetic_auth_store.c?rev=1365618&r1=1365617&r2=1365618&view=diff
==============================================================================
--- 
subversion/branches/master-passphrase/subversion/libsvn_subr/pathetic_auth_store.c
 (original)
+++ 
subversion/branches/master-passphrase/subversion/libsvn_subr/pathetic_auth_store.c
 Wed Jul 25 15:15:06 2012
@@ -405,7 +405,9 @@ pathetic_store_open(void *baton,
                                                    check_skel->len),
                                     scratch_pool));
   if (! valid_secret)
-    return svn_error_create(SVN_ERR_AUTHN_FAILED, NULL, _("Invalid secret"));
+    return svn_error_create(SVN_ERR_AUTHN_FAILED, NULL,
+                            _("Invalid secret; unable to open "
+                              "encrypted store"));
 
   return SVN_NO_ERROR;
 }


Reply via email to