From a36a0a7a84a16b9530fb1eed4aa07f1a828921c1 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sat, 27 Apr 2013 02:57:16 +0000 Subject: [PATCH] Update comments. svn path=/trunk/; revision=49069 --- ui/win32/console_win32.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/ui/win32/console_win32.c b/ui/win32/console_win32.c index 7f93a1a742..b248efa6e2 100644 --- a/ui/win32/console_win32.c +++ b/ui/win32/console_win32.c @@ -180,13 +180,12 @@ create_console(void) do a FreeConsole() first. */ FreeConsole(); if (AllocConsole()) { - /* That succeeded. */ + /* That succeeded. + XXX - on Windows XP, it "succeeds" but doesn't actually + pop up a console window! */ console_wait = TRUE; SetConsoleTitle(_T("Wireshark Debug Console")); } else { - /* XXX - this appears to happen when Wireshark is run from the GUI - rather than from a command-line prompt of some sort. The - error is ERROR_ACCESS_DENIED. */ return; /* couldn't create console */ } }