New patch to run secure-by-default until upstream patch

This commit is contained in:
Hibby 2024-07-05 08:34:18 +01:00
parent 5b3543c12a
commit d122a87dd1
No known key found for this signature in database
4 changed files with 16 additions and 10 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.pc/

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
linbpq (6.0.24.38-2) UNRELEASED; urgency=medium
* Secure by default patch
-- Dave Hibberd <hibby@debian.org> Fri, 05 Jul 2024 08:34:44 +0100
linbpq (6.0.24.38-1) unstable; urgency=medium
* New Upstream

View File

@ -1,12 +1,10 @@
diff --git a/TelnetV6.c b/TelnetV6.c
index b139fad..4a68108 100644
--- a/TelnetV6.c
+++ b/TelnetV6.c
@@ -428,6 +428,7 @@ int ProcessLine(char * buf, int Port)
TNC->Hardware = H_TELNET;
TCP->IPV4 = TRUE;
strcpy(TCP->CMSServer, "cms.winlink.org");
+ TCP->SecureTelnet = 1;
}
TNC = TNCInfo[Port];
@@ -428,6 +428,7 @@
TNC->Hardware = H_TELNET;
TCP->IPV4 = TRUE;
strcpy(TCP->CMSServer, "cms.winlink.org");
+ TCP->SecureTelnet = 1;
}
TNC = TNCInfo[Port];

View File

@ -1,2 +1,3 @@
spelling-errors.patch
makefile
secure-by-default.patch