[[[ * tools/client-side/svnmucc/svnmucc.c (main): Fix the 'ran out of arguments' check. ]]]
Index: tools/client-side/svnmucc/svnmucc.c =================================================================== --- tools/client-side/svnmucc/svnmucc.c (revision 1213724) +++ tools/client-side/svnmucc/svnmucc.c (working copy) @@ -1169,7 +1169,7 @@ else anchor = svn_uri_get_longest_ancestor(anchor, url, pool); - if ((++i == action_args->nelts) && (j >= num_url_args)) + if ((++i == action_args->nelts) && (j+1 != num_url_args)) insufficient(pool); } APR_ARRAY_PUSH(actions, struct action *) = action;