mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-11 07:28:08 +03:00
16 lines
526 B
Diff
16 lines
526 B
Diff
|
diff --git a/node_modules/ssh2/lib/protocol/Protocol.js b/node_modules/ssh2/lib/protocol/Protocol.js
|
||
|
index b4d1ee0..1e3ac66 100644
|
||
|
--- a/node_modules/ssh2/lib/protocol/Protocol.js
|
||
|
+++ b/node_modules/ssh2/lib/protocol/Protocol.js
|
||
|
@@ -254,8 +254,8 @@ class Protocol {
|
||
|
);
|
||
|
if (greeting)
|
||
|
this._onWrite(greeting);
|
||
|
- this._onWrite(this._identRaw);
|
||
|
- this._onWrite(CRLF);
|
||
|
+ this._onWrite(Buffer.concat([this._identRaw, CRLF]));
|
||
|
+ // this._onWrite(CRLF);
|
||
|
});
|
||
|
}
|
||
|
_destruct(reason) {
|