On Wed, Dec 22, 2010 at 12:27 AM, Noorul Islam K M <noo...@collab.net> wrote: > > Find attached minor patch which makes 'if' syntax consistent and also > some comment improvements. > > Log > > [[[ > > Fix syntax inconsistency and update comments. > > * libsvn_client/locking_commands.c > (organize_lock_targets): Fix syntax inconsistency. Update comments.
*What* about the syntax inconsistency are you fixing? White space? Function names? Use of braces? (I can tell by looking at the patch, but a more informative log message would be nice.) Same with "update comments". Update them in what way? > > Patch by: Noorul Islam K M <noorul{_AT_}collab.net> > ]]] > > Thanks and Regards > Noorul > > > Index: libsvn_client/locking_commands.c > =================================================================== > --- libsvn_client/locking_commands.c (revision 1051763) > +++ libsvn_client/locking_commands.c (working copy) > @@ -191,18 +191,15 @@ > > /* Get the common parent and all paths */ > if (url_mode) > - { > SVN_ERR(svn_uri_condense_targets(common_parent_url, &rel_targets, > targets, TRUE, pool, pool)); > - } > else > - { > SVN_ERR(svn_dirent_condense_targets(common_parent_url, &rel_targets, > targets, TRUE, pool, pool)); > - } > > - /* svn_path_condense_targets leaves paths empty if TARGETS only had > - 1 member, so we special case that. */ > + /* svn_uri_condense_targets and svn_dirent_condense_targets leaves > + URLs/paths empty if TARGETS only had 1 member, so we special case > + that. */ > if (apr_is_empty_array(rel_targets)) > { > const char *parent, *base; > @@ -273,8 +270,8 @@ > SVN_ERR(svn_uri_condense_targets(&common_url, &rel_urls, urls, > FALSE, pool, pool)); > > - /* svn_path_condense_targets leaves paths empty if TARGETS only had > - 1 member, so we special case that (again). */ > + /* svn_uri_condense_targets leaves URLs empty if TARGETS only > + had 1 member, so we special case that (again). */ > if (apr_is_empty_array(rel_urls)) > { > const char *base_name = svn_uri_basename(common_url, pool); > >