From 503ddb97f09d163e0b616892dd13d0903fd7d71e Mon Sep 17 00:00:00 2001 From: simon Date: Sun, 6 May 2001 15:09:32 +0000 Subject: [PATCH] Strip off and ignore `:port' on the end of a hostname. git-svn-id: svn://svn.tartarus.org/sgt/putty@1099 cda61777-01e9-0310-a592-d414129be87e --- window.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/window.c b/window.c index 063f0db6..3c67ddf4 100644 --- a/window.c +++ b/window.c @@ -299,6 +299,11 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show) memmove(cfg.host, atsign + 1, 1 + strlen(atsign + 1)); } } + + /* + * Trim a colon suffix off the hostname if it's there. + */ + cfg.host[strcspn(cfg.host, ":")] = '\0'; } /* -- 2.11.0