From b589882b17dba21296ac60e80700dc893e33e9a3 Mon Sep 17 00:00:00 2001
From: deuce <>
Date: Fri, 3 Apr 2020 21:58:16 +0000
Subject: [PATCH] this_cline -> this where appropriate.

---
 exec/load/ircd_server.js | 2 +-
 exec/load/ircd_unreg.js  | 2 +-
 exec/load/ircd_user.js   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/exec/load/ircd_server.js b/exec/load/ircd_server.js
index 60d3f78089..22e834397e 100644
--- a/exec/load/ircd_server.js
+++ b/exec/load/ircd_server.js
@@ -1220,7 +1220,7 @@ function Server_Quit(str,suppress_bcast,is_netsplit,origin) {
 	if (this.outgoing) {
 		if (YLines[this.ircclass].active > 0) {
 			YLines[this.ircclass].active--;
-			log(LOG_DEBUG, "Class "+this_cline.ircclass+" down to "+YLines[this_cline.ircclass].active+" active out of "+YLines[this_cline.ircclass].maxlinks);
+			log(LOG_DEBUG, "Class "+this.ircclass+" down to "+YLines[this.ircclass].active+" active out of "+YLines[this.ircclass].maxlinks);
 		}
 		else
 			log(LOG_ERROR, format("Class %d YLine going negative", this.ircclass));
diff --git a/exec/load/ircd_unreg.js b/exec/load/ircd_unreg.js
index 240946f355..b76145a9dd 100644
--- a/exec/load/ircd_unreg.js
+++ b/exec/load/ircd_unreg.js
@@ -314,7 +314,7 @@ function Unregistered_Quit(msg) {
 	if (this.outgoing) {
 		if (YLines[this.ircclass].active > 0) {
 			YLines[this.ircclass].active--;
-			log(LOG_DEBUG, "Class "+this_cline.ircclass+" down to "+YLines[this_cline.ircclass].active+" active out of "+YLines[this_cline.ircclass].maxlinks);
+			log(LOG_DEBUG, "Class "+this.ircclass+" down to "+YLines[this.ircclass].active+" active out of "+YLines[this.ircclass].maxlinks);
 		}
 		else
 			log(LOG_ERROR, format("Class %d YLine going negative", this.ircclass));
diff --git a/exec/load/ircd_user.js b/exec/load/ircd_user.js
index 7ae184aa93..ff20a728e6 100644
--- a/exec/load/ircd_user.js
+++ b/exec/load/ircd_user.js
@@ -1556,7 +1556,7 @@ function User_Quit(str,suppress_bcast,is_netsplit,origin) {
 		log(LOG_ERROR, "Outgoing USER connection detected!");
 		if (YLines[this.ircclass].active > 0) {
 			YLines[this.ircclass].active--;
-			log(LOG_DEBUG, "Class "+this_cline.ircclass+" down to "+YLines[this_cline.ircclass].active+" active out of "+YLines[this_cline.ircclass].maxlinks);
+			log(LOG_DEBUG, "Class "+this.ircclass+" down to "+YLines[this.ircclass].active+" active out of "+YLines[this.ircclass].maxlinks);
 		}
 		else
 			log(LOG_ERROR, format("Class %d YLine going negative", this.ircclass));
-- 
GitLab