1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-08 08:58:00 +00:00

Retire TELNET_DEFAULT.

This commit is contained in:
Jacob Nevins 2020-06-27 16:09:50 +01:00
parent e97a364d07
commit 932a795816
3 changed files with 0 additions and 13 deletions

5
Recipe
View File

@ -97,11 +97,6 @@
# Disables PuTTY's use of SecureZeroMemory(), which is missing
# from some environments' header files.
#
# - XFLAGS=/DTELNET_DEFAULT
# Causes PuTTY to default to the Telnet protocol (in the absence
# of Default Settings and so on to the contrary). Normally PuTTY
# will default to SSH.
#
# - XFLAGS=/DDEBUG
# Causes PuTTY to enable internal debugging.
#

View File

@ -16,11 +16,7 @@
*/
const char *const appname = "PuTTY";
#ifdef TELNET_DEFAULT
const int be_default_protocol = PROT_TELNET;
#else
const int be_default_protocol = PROT_SSH;
#endif
const struct BackendVtable *const backends[] = {
&ssh_backend,

View File

@ -16,11 +16,7 @@
*/
const char *const appname = "PuTTY";
#ifdef TELNET_DEFAULT
const int be_default_protocol = PROT_TELNET;
#else
const int be_default_protocol = PROT_SSH;
#endif
const struct BackendVtable *const backends[] = {
&ssh_backend,