On Mon, May 14, 2012 at 5:02 PM, <hwri...@apache.org> wrote: >... > +++ subversion/branches/ev2-export/subversion/libsvn_client/commit.c Mon May > 14 21:02:58 2012 > @@ -142,8 +142,8 @@ import_file(svn_editor_t *editor, > > /* Now, transmit the file contents. */ > SVN_ERR(svn_client__get_detranslated_stream(&contents, &checksum, NULL, > - local_abspath, > - properties, pool, pool)); > + local_abspath, properties, > TRUE, > + pool, pool));
It's nice to have /* repair_eols */ attached to that magic constant so that I don't have to go yank up the declaration of get_detranslated_stream() figure out why that value was chosen. >... > +++ subversion/branches/ev2-export/subversion/libsvn_client/commit_util.c Mon > May 14 21:02:58 2012 > @@ -1588,7 +1588,7 @@ do_item_commit(svn_client_commit_item3_t > appropriate checksum. */ > SVN_ERR(svn_client__get_detranslated_stream(&contents, &sha1_checksum, > &md5_checksum, > - item->path, props, > + item->path, props, FALSE, > scratch_pool, > scratch_pool)); Likewise. >... Cheers, -g