You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2013/09/10 15:13:16 UTC

svn commit: r1521470 - /subversion/trunk/subversion/svnauth/svnauth.c

Author: stsp
Date: Tue Sep 10 13:13:15 2013
New Revision: 1521470

URL: http://svn.apache.org/r1521470
Log:
* subversion/svnauth/svnauth.c
  (parse_args): Use the default SVN_ERR_CL_INSUFFICIENT_ARGS error message.

Modified:
    subversion/trunk/subversion/svnauth/svnauth.c

Modified: subversion/trunk/subversion/svnauth/svnauth.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svnauth/svnauth.c?rev=1521470&r1=1521469&r2=1521470&view=diff
==============================================================================
--- subversion/trunk/subversion/svnauth/svnauth.c (original)
+++ subversion/trunk/subversion/svnauth/svnauth.c Tue Sep 10 13:13:15 2013
@@ -156,8 +156,7 @@ parse_args(apr_array_header_t **args,
     SVN_ERR_ASSERT(args);
 
   if ((min_expected >= 0) && (num_args < min_expected))
-    return svn_error_create(SVN_ERR_CL_INSUFFICIENT_ARGS, 0,
-                            "Not enough arguments");
+    return svn_error_create(SVN_ERR_CL_INSUFFICIENT_ARGS, 0, NULL);
   if ((max_expected >= 0) && (num_args > max_expected))
     return svn_error_create(SVN_ERR_CL_ARG_PARSING_ERROR, 0,
                             "Too many arguments");