From 9e3914d1139a8ace4d14a6ac452334ebe9bd94ca Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Sat, 17 Mar 2007 00:29:59 +0000
Subject: [PATCH] Fix Angus-identified bug: lines and mode arguments reversed
 in printtail() call.

---
 exec/logon.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/exec/logon.js b/exec/logon.js
index ec4e1544e0..30c7640783 100644
--- a/exec/logon.js
+++ b/exec/logon.js
@@ -93,7 +93,7 @@ if(file_size(logonlst)<1)
 	printf("\1n\1g\1hYou are the first caller of the day!\r\n");
 else {
 	printf("\1n\1g\1hLast few callers:\1n\r\n");
-	console.printtail(logonlst,P_NOATCODES,4);
+	console.printtail(logonlst,4,P_NOATCODES);	// args: filename, lines, mode
 }
 console.crlf();
 
-- 
GitLab