mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-05 13:32:48 -05:00
Mark Baker's raw-TCP back end (untested and experimental as yet)
[originally from svn r266]
This commit is contained in:
3
window.c
3
window.c
@ -178,7 +178,8 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show) {
|
||||
}
|
||||
}
|
||||
|
||||
back = (cfg.protocol == PROT_SSH ? &ssh_backend : &telnet_backend);
|
||||
back = (cfg.protocol == PROT_SSH ? &ssh_backend :
|
||||
cfg.protocol == PROT_TELNET ? &telnet_backend : &raw_backend );
|
||||
|
||||
if (!prev) {
|
||||
wndclass.style = 0;
|
||||
|
Reference in New Issue
Block a user