View | Details | Raw Unified | Return to bug 1208 | Differences between
and this patch

Collapse All | Expand All

(-)subversion-1.3.1-orig/subversion/libsvn_ra_svn/client.c (-2 / +2 lines)
Lines 454-460 Link Here
454
454
455
  /* We have one predefined tunnel scheme, if it isn't overridden by config. */
455
  /* We have one predefined tunnel scheme, if it isn't overridden by config. */
456
  if (!val && strcmp(tunnel, "ssh") == 0)
456
  if (!val && strcmp(tunnel, "ssh") == 0)
457
    val = "$SVN_SSH ssh";
457
    val = "$SVN_SSH ssh -q";
458
458
459
  if (!val || !*val)
459
  if (!val || !*val)
460
    return svn_error_createf(SVN_ERR_BAD_URL, NULL,
460
    return svn_error_createf(SVN_ERR_BAD_URL, NULL,
Lines 551-557 Link Here
551
   *   - Killing the tunnel agent with SIGTERM leads to unsightly
551
   *   - Killing the tunnel agent with SIGTERM leads to unsightly
552
   *     stderr output from ssh.
552
   *     stderr output from ssh.
553
   */
553
   */
554
  apr_pool_note_subprocess(pool, proc, APR_KILL_ALWAYS);
554
  apr_pool_note_subprocess(pool, proc, APR_KILL_ONLY_ONCE);
555
555
556
  /* APR pipe objects inherit by default.  But we don't want the
556
  /* APR pipe objects inherit by default.  But we don't want the
557
   * tunnel agent's pipes held open by future child processes
557
   * tunnel agent's pipes held open by future child processes

Return to bug 1208