Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2006-01-05 03:49:17 +0300
committerChristopher Faylor <me@cgf.cx>2006-01-05 03:49:17 +0300
commitfaec62caaf6492481f346125dc978bed6dfa382d (patch)
tree86fe6fcf63778d89e85e8d45bdd2a2dbdc58325b /winsup
parentab7eaf697169cf0aa1f883d7d7232970bfe6c19f (diff)
* fhandler_console.cc (fhandler_console::need_invisible): Open up the security
of the newly created windows station.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/fhandler_console.cc2
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index bbfcebb65..80e748f12 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+2006-01-04 Christopher Faylor <cgf@timesys.com>
+
+ * fhandler_console.cc (fhandler_console::need_invisible): Open up the
+ security of the newly created windows station.
+
2006-01-04 Eric Blake <ebb9@byu.net>
* path.cc (dot_special_chars): Add ", <, >, and |.
diff --git a/winsup/cygwin/fhandler_console.cc b/winsup/cygwin/fhandler_console.cc
index c6e67e804..842d58c35 100644
--- a/winsup/cygwin/fhandler_console.cc
+++ b/winsup/cygwin/fhandler_console.cc
@@ -1856,7 +1856,7 @@ fhandler_console::need_invisible ()
h = horig = GetProcessWindowStation ();
if (myself->ctty == -1)
{
- h = CreateWindowStation ("CygwinInvisible", 0, WINSTA_ALL_ACCESS, &sec_none_nih);
+ h = CreateWindowStation ("CygwinInvisible", 0, WINSTA_ALL_ACCESS, &sec_all_nih);
termios_printf ("CreateWindowStation(\"CygwinInvisible\", %p), %E", h);
if (h)
{