if the capture child pops up it's own console, title it as such

svn path=/trunk/; revision=15889
This commit is contained in:
Ulf Lamping 2005-09-20 08:18:41 +00:00
parent 2bccfcd3c4
commit f14ccc2f63
1 changed files with 5 additions and 2 deletions

View File

@ -2604,8 +2604,11 @@ create_console(void)
the message(s) we put in there). */
atexit(destroy_console);
SetConsoleTitle("Ethereal Debug Console");
if(capture_child) {
SetConsoleTitle("Ethereal Capture Child Debug Console");
} else {
SetConsoleTitle("Ethereal Debug Console");
}
}
}