~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/ssh.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-10-07 12:45:51 UTC
  • mfrom: (5459.4.1 561061-ssh-protocol)
  • Revision ID: pqm@pqm.ubuntu.com-20101007124551-zfqhlkqdegiy7otp
(vila) Don't force openssh to use protocol=2 (Neil Martinsen-Burrell)

Show diffs side-by-side

added added

removed removed

Lines of Context:
406
406
                                  command=None):
407
407
        args = [self.executable_path,
408
408
                '-oForwardX11=no', '-oForwardAgent=no',
409
 
                '-oClearAllForwardings=yes', '-oProtocol=2',
 
409
                '-oClearAllForwardings=yes',
410
410
                '-oNoHostAuthenticationForLocalhost=yes']
411
411
        if port is not None:
412
412
            args.extend(['-p', str(port)])