From: owen Date: Wed, 25 Jan 2006 22:46:33 +0000 (+0000) Subject: Don't explicitly open the logfile on startup; it'll automatically be opened X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/commitdiff_plain/34ea32c56d4420725dded5ec263d48e603dac539 Don't explicitly open the logfile on startup; it'll automatically be opened by logwrite() as necessary. Should fix win-askappend-multi. git-svn-id: svn://svn.tartarus.org/sgt/putty@6533 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/windows/window.c b/windows/window.c index aa936f39..e5aa45b7 100644 --- a/windows/window.c +++ b/windows/window.c @@ -796,11 +796,6 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show) set_input_locale(GetKeyboardLayout(0)); /* - * Open the initial log file if there is one. - */ - logfopen(logctx); - - /* * Finally show the window! */ ShowWindow(hwnd, show);