Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Renci.SshNet/Sftp/SftpFileSystemInformation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ public bool SupportsSetUid
}

/// <summary>
/// Gets the max name lenght.
/// Gets the max name length.
/// </summary>
/// <value>
/// The max name lenght.
/// The max name length.
/// </value>
public ulong MaxNameLenght { get; private set; }

Expand Down
2 changes: 1 addition & 1 deletion src/Renci.SshNet/Sftp/SftpSession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ protected override void OnDataReceived(ArraySegment<byte> data)

if (!TryLoadSftpMessage(data.Slice(4, packetLength)))
{
// An error occured.
// An error occurred.
return;
}

Expand Down
Loading