summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/fhandler_console.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2006-01-04 03:43:55 +0000
committerChristopher Faylor <me@cgf.cx>2006-01-04 03:43:55 +0000
commit4c15746236d2fe169d795eca57a8a73f0e8fd096 (patch)
tree7488e204907f1fd221c26123d4ebee3625200dcd /winsup/cygwin/fhandler_console.cc
parenta4b5f2b383d864d6f7671a42b4c5a892199fb689 (diff)
downloadcygnal-4c15746236d2fe169d795eca57a8a73f0e8fd096.tar.gz
cygnal-4c15746236d2fe169d795eca57a8a73f0e8fd096.tar.bz2
cygnal-4c15746236d2fe169d795eca57a8a73f0e8fd096.zip
* fhandler_process.cc (fhandler_process::readdir): Add missing argument to
syscall_printf. * fhandler_console.cc (fhandler_console::need_invisible): Use made-up name for windows station rather than asking Windows to create one for us. * spawn.cc (spawn_guts): Don't mess with console if we're detaching.
Diffstat (limited to 'winsup/cygwin/fhandler_console.cc')
-rw-r--r--winsup/cygwin/fhandler_console.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler_console.cc b/winsup/cygwin/fhandler_console.cc
index 431886352..c10098b58 100644
--- a/winsup/cygwin/fhandler_console.cc
+++ b/winsup/cygwin/fhandler_console.cc
@@ -1856,8 +1856,8 @@ fhandler_console::need_invisible ()
h = horig = GetProcessWindowStation ();
if (myself->ctty == -1)
{
- h = CreateWindowStation (NULL, 0, WINSTA_ALL_ACCESS, &sec_none_nih);
- termios_printf ("CreateWindowStation %p, %E", h);
+ h = CreateWindowStation ("CygwinInvisible", 0, WINSTA_ALL_ACCESS, &sec_none_nih);
+ termios_printf ("CreateWindowStation(\"CygwinInvisible\", %p), %E", h);
if (h)
{
b = SetProcessWindowStation (h);