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

Remove port number validation from Windows PuTTY -- it could cause unnecessary

trouble with serial connections, and a port number of zero gets caught later
anyway.

[originally from svn r7634]
This commit is contained in:
Jacob Nevins 2007-07-01 15:41:09 +00:00
parent 46c00b0f38
commit 6c14388c1d

View File

@ -597,15 +597,6 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show)
}
}
/* Check for invalid Port number (i.e. zero) */
if (cfg.port == 0) {
char *str = dupprintf("%s Internal Error", appname);
MessageBox(NULL, "Invalid Port Number",
str, MB_OK | MB_ICONEXCLAMATION);
sfree(str);
cleanup_exit(1);
}
if (!prev) {
wndclass.style = 0;
wndclass.lpfnWndProc = WndProc;