~svn/ubuntu/oneiric/subversion/ppa

« back to all changes in this revision

Viewing changes to subversion/libsvn_ra_svn/client.c

  • Committer: Max Bowsher
  • Date: 2010-07-01 22:34:24 UTC
  • mfrom: (0.4.3 sid)
  • Revision ID: maxb@f2s.com-20100701223424-b2astfwbpjwg5rwh
Tags: 1.6.12dfsg-1svn1
* Merge from debian testing, remaining changes:
  - Create pot file on build.
  - Build a python-subversion-dbg package.
  - (Build-)depend on default-jre-headless/-jdk.
  - Do not apply java-build patch.
  - debian/rules: Manually create the doxygen output directory, otherwise
    we get weird build failures when running parallel builds.
  - Disable the serf backend because serf is in universe.
  - Amend the XS-Python-Version line to ">= 2.4" rather than explicit
    versions (only building for 2.6 in Lucid since that is the only Python
    in Lucid).
* Urgency medium, as it (probably) fixes some FTBFS.
* New upstream version.
  - Fixes some or all cases of inappropriate need for read access to the
    root of the repository.  (Closes: #510883)
* Disable parallel mode for 'make check', which appears to have made
  some build daemons sad.
* svn-bisect: use pegs to support bisecting in deleted branches.
  Thanks Nikita Borodikhin.  (Closes: #582344)
* patches/ruby-test-info: expand for more failures nobody can figure
  out.  Sigh.
* Upgrade from source format 1.0 to 1.0.
* New upstream version.  Rediff a patch or two.
  - Mergeinfo queries no longer require access to repository root.
    (Ref: #510883)
  - Ignores errors reading .svn/ in parent directories.  (Closes: #570271)
* rules: Run 'check' target in parallel mode.

Show diffs side-by-side

added added

removed removed

Lines of Context:
457
457
  apr_status_t status;
458
458
  apr_proc_t *proc;
459
459
  apr_procattr_t *attr;
 
460
  svn_error_t *err;
460
461
 
461
462
  status = apr_procattr_create(&attr, pool);
462
463
  if (status == APR_SUCCESS)
510
511
 
511
512
  /* Guard against dotfile output to stdout on the server. */
512
513
  *conn = svn_ra_svn_create_conn(NULL, proc->out, proc->in, pool);
513
 
  SVN_ERR(svn_ra_svn_skip_leading_garbage(*conn, pool));
 
514
  err = svn_ra_svn_skip_leading_garbage(*conn, pool);
 
515
  if (err)
 
516
    return svn_error_quick_wrap(
 
517
             err,
 
518
             _("To better debug SSH connection problems, remove the -q "
 
519
               "option from 'ssh' in the [tunnels] section of your "
 
520
               "Subversion configuration file."));
 
521
 
514
522
  return SVN_NO_ERROR;
515
523
}
516
524