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 2013/03/27 18:32:44 UTC

svn commit: r1461734 - /subversion/trunk/subversion/libsvn_subr/auth.c

Author: cmpilato
Date: Wed Mar 27 17:32:44 2013
New Revision: 1461734

URL: http://svn.apache.org/r1461734
Log:
* subversion/libsvn_subr/auth.c
  (svn_auth_first_credentials): Fix a space-before-fn-paren instance.

Modified:
    subversion/trunk/subversion/libsvn_subr/auth.c

Modified: subversion/trunk/subversion/libsvn_subr/auth.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/auth.c?rev=1461734&r1=1461733&r2=1461734&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_subr/auth.c (original)
+++ subversion/trunk/subversion/libsvn_subr/auth.c Wed Mar 27 17:32:44 2013
@@ -226,9 +226,11 @@ svn_auth_first_credentials(void **creden
         {
           provider = APR_ARRAY_IDX(table->providers, i,
                                    svn_auth_provider_object_t *);
-          SVN_ERR(provider->vtable->first_credentials
-                  (&creds, &iter_baton, provider->provider_baton,
-                   auth_baton->parameters, realmstring, auth_baton->pool));
+          SVN_ERR(provider->vtable->first_credentials(&creds, &iter_baton,
+                                                      provider->provider_baton,
+                                                      auth_baton->parameters,
+                                                      realmstring,
+                                                      auth_baton->pool));
 
           if (creds != NULL)
             {