From 6c14388c1d76c996318438d270afc91c76a076ce Mon Sep 17 00:00:00 2001 From: Jacob Nevins Date: Sun, 1 Jul 2007 15:41:09 +0000 Subject: [PATCH] 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] --- windows/window.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/windows/window.c b/windows/window.c index 1d4b7152..033cfa5d 100644 --- a/windows/window.c +++ b/windows/window.c @@ -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;