From 807fd8b7f0509ab0ff37dd0b21b40b2d51f11f91 Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Sun, 13 Oct 2002 09:41:42 +0000
Subject: [PATCH] Now uses protocall name ("finger") instead of port number
 (70).

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

diff --git a/exec/finger.js b/exec/finger.js
index 8db5f27c66..fa6b4b3a07 100644
--- a/exec/finger.js
+++ b/exec/finger.js
@@ -13,7 +13,7 @@ if((hp = dest.indexOf('@'))==-1) {
 host = dest.slice(hp+1);
 sock = new Socket();
 //sock.debug = true;
-if(!sock.connect(host,79)) 
+if(!sock.connect(host,"finger")) 
 	alert("Connection to " + host + " failed with error " + sock.last_error);
 else {
 	sock.send(dest.slice(0,hp)+"\r\n");
-- 
GitLab