From e4ae114c7155ce08ed552698fa8df0b5385e18d2 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Wed, 4 Aug 2021 20:22:39 +0200 Subject: [PATCH] removed old ssh2 patch --- patches/ssh2+1.1.0.patch | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 patches/ssh2+1.1.0.patch diff --git a/patches/ssh2+1.1.0.patch b/patches/ssh2+1.1.0.patch deleted file mode 100644 index ecfe3fb3..00000000 --- a/patches/ssh2+1.1.0.patch +++ /dev/null @@ -1,15 +0,0 @@ -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) {