mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
Retire TELNET_DEFAULT.
This commit is contained in:
parent
e97a364d07
commit
932a795816
5
Recipe
5
Recipe
@ -97,11 +97,6 @@
|
|||||||
# Disables PuTTY's use of SecureZeroMemory(), which is missing
|
# Disables PuTTY's use of SecureZeroMemory(), which is missing
|
||||||
# from some environments' header files.
|
# 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
|
# - XFLAGS=/DDEBUG
|
||||||
# Causes PuTTY to enable internal debugging.
|
# Causes PuTTY to enable internal debugging.
|
||||||
#
|
#
|
||||||
|
4
be_all.c
4
be_all.c
@ -16,11 +16,7 @@
|
|||||||
*/
|
*/
|
||||||
const char *const appname = "PuTTY";
|
const char *const appname = "PuTTY";
|
||||||
|
|
||||||
#ifdef TELNET_DEFAULT
|
|
||||||
const int be_default_protocol = PROT_TELNET;
|
|
||||||
#else
|
|
||||||
const int be_default_protocol = PROT_SSH;
|
const int be_default_protocol = PROT_SSH;
|
||||||
#endif
|
|
||||||
|
|
||||||
const struct BackendVtable *const backends[] = {
|
const struct BackendVtable *const backends[] = {
|
||||||
&ssh_backend,
|
&ssh_backend,
|
||||||
|
@ -16,11 +16,7 @@
|
|||||||
*/
|
*/
|
||||||
const char *const appname = "PuTTY";
|
const char *const appname = "PuTTY";
|
||||||
|
|
||||||
#ifdef TELNET_DEFAULT
|
|
||||||
const int be_default_protocol = PROT_TELNET;
|
|
||||||
#else
|
|
||||||
const int be_default_protocol = PROT_SSH;
|
const int be_default_protocol = PROT_SSH;
|
||||||
#endif
|
|
||||||
|
|
||||||
const struct BackendVtable *const backends[] = {
|
const struct BackendVtable *const backends[] = {
|
||||||
&ssh_backend,
|
&ssh_backend,
|
||||||
|
Loading…
Reference in New Issue
Block a user