Skip to content

Commit 3143e14

Browse files
committed
Merge remote-tracking branch 'origin/develop' into develop
# Conflicts: # src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelRequest/PseudoTerminalInfoTest.cs
2 parents b20790a + bf4e045 commit 3143e14

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.gitattributes

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
*.cs text
44
*.xaml text
5-
*.sln text eol=crlf
6-
*.csproj text eol=crlf
7-
*.shproj text eol=crlf
8-
*.appxmanifest text eol=crlf
5+
*.sln eol=crlf
6+
*.csproj eol=crlf
7+
*.shproj eol=crlf
8+
*.appxmanifest eol=crlf
99

1010
*.png binary
1111
*.jpg binary

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ SSH.NET
33
SSH.NET is a Secure Shell (SSH) library for .NET, optimized for parallelism.
44

55
[![Version](https://img.shields.io/nuget/vpre/SSH.NET.svg)](https://www.nuget.org/packages/SSH.NET)
6+
[![Build status](https://ci.appveyor.com/api/projects/status/ih77qu6tap3o92gu/branch/develop?svg=true)](https://ci.appveyor.com/api/projects/status/ih77qu6tap3o92gu/branch/develop)
67

78
##Introduction
89
This project was inspired by **Sharp.SSH** library which was ported from java and it seems like was not supported for quite some time. This library is a complete rewrite, without any third party dependencies, using parallelism to achieve the best performance possible.

src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelRequest/PseudoTerminalInfoTest.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.Globalization;
44
using System.Linq;
@@ -61,7 +61,6 @@ public void GetBytes_TerminalModeValues_Null()
6161
var sshDataStream = new SshDataStream(bytes);
6262

6363
Assert.AreEqual(1, sshDataStream.ReadByte()); // WantReply
64-
// Assert.AreEqual((uint) _environmentVariableBytes.Length, sshDataStream.ReadUInt32());
6564
Assert.AreEqual(environmentVariable, sshDataStream.ReadString(Encoding.UTF8));
6665
Assert.AreEqual(columns, sshDataStream.ReadUInt32());
6766
Assert.AreEqual(rows, sshDataStream.ReadUInt32());

src/Renci.SshNet/Messages/Connection/ChannelRequest/PseudoTerminalInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ protected override void SaveData()
132132
Write(EnvironmentVariable);
133133
Write(Columns);
134134
Write(Rows);
135-
Write(Rows);
135+
Write(PixelWidth);
136136
Write(PixelHeight);
137137

138138
if (TerminalModeValues != null)

0 commit comments

Comments
 (0)