From 7ef410e0f774ef9d52c1030637d2b26c7a09b571 Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Sat, 17 Mar 2018 22:52:50 +0000
Subject: [PATCH] Attempt to fix: Mar 17 14:15:56 trmb synchronet: srvc 0052
 BINKP !JavaScript  /sbbs/exec/binkit .js line 862: TypeError: this.command is
 undefined

---
 exec/binkit.js | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/exec/binkit.js b/exec/binkit.js
index e15676638c..cb2b109628 100644
--- a/exec/binkit.js
+++ b/exec/binkit.js
@@ -598,7 +598,6 @@ function callout(addr, scfg, semaphores, locks, bicfg)
 
 	// We won't add files until the auth finishes...
 	success = bp.connect(addr, bp.cb_data.binkitpw, callout_auth_cb, port, host);
-
 	callout_done(bp, semaphores);
 }
 
@@ -859,7 +858,7 @@ function inbound_auth_cb(pwd, bp)
 	});
 	if (addrs.length === 0) {
 		if (invalid) {
-			bp.sendCmd(this.command.M_ERR, "Password mismatch");
+			bp.sendCmd(bp.command.M_ERR, "Password mismatch");
 		}
 		else {
 			// If we have NONE of their nodes configured, we can send them files for ALL of them.
-- 
GitLab