From 6f15ccd00405d645f5cc7809e32401b0c860e5c0 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Tue, 13 Aug 2019 20:22:19 +0000 Subject: [PATCH] If a telnet location was provided by the client, copy it to the caller-ID (CID) variable, even when the client isn't SEXPOTS. --- src/sbbs3/answer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sbbs3/answer.cpp b/src/sbbs3/answer.cpp index 908ab3fe4c..386af6f551 100644 --- a/src/sbbs3/answer.cpp +++ b/src/sbbs3/answer.cpp @@ -431,6 +431,7 @@ bool sbbs_t::answer() } else { if(telnet_location[0]) { /* Telnet Location info provided */ lprintf(LOG_INFO, "Telnet Location: %s", telnet_location); + SAFECOPY(cid, telnet_location); } } if(telnet_speed) { -- GitLab