From bf25c42be169b69e9a0e2051acfe9f8b97148c2d Mon Sep 17 00:00:00 2001 From: "Rob Swindell (on Windows 11)" <rob@synchro.net> Date: Sat, 2 Mar 2024 15:34:05 -0800 Subject: [PATCH] TRUE -> true --- src/sbbs3/answer.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sbbs3/answer.cpp b/src/sbbs3/answer.cpp index 72ecb360b5..c61eb6ad7f 100644 --- a/src/sbbs3/answer.cpp +++ b/src/sbbs3/answer.cpp @@ -568,7 +568,7 @@ bool sbbs_t::answer() if(l) { truncsp(str); - c_escape_str(str,tmp,sizeof(tmp)-1,TRUE); + c_escape_str(str,tmp,sizeof(tmp)-1,true); lprintf(LOG_DEBUG,"received terminal auto-detection response: '%s'", tmp); if(strstr(str,"RIPSCRIP")) { @@ -622,7 +622,7 @@ bool sbbs_t::answer() if(!autoterm) { autoterm |= NO_EXASCII; if(str[0]) { - c_escape_str(str,tmp,sizeof(tmp)-1,TRUE); + c_escape_str(str,tmp,sizeof(tmp)-1,true); lprintf(LOG_NOTICE,"terminal auto-detection failed, response: '%s'", tmp); } } @@ -674,7 +674,7 @@ bool sbbs_t::answer() } SAFECOPY(client.addr,cid); SAFECOPY(client.host,client_name); - client_on(client_socket,&client,TRUE /* update */); + client_on(client_socket,&client,true /* update */); } else { if(telnet_location[0]) { /* Telnet Location info provided */ lprintf(LOG_INFO, "Telnet Location: %s", telnet_location); -- GitLab